chorus/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Normal View History

2023-04-04 16:42:20 +02:00
[package]
name = "chorus"
version = "0.1.0"
license = "AGPL-3"
edition = "2021"
2023-05-26 16:09:55 +02:00
[features]
2023-05-26 16:16:24 +02:00
default = ["client"]
2023-05-26 16:09:55 +02:00
backend = ["poem", "sqlx"]
client = []
2023-04-04 16:42:20 +02:00
[dependencies]
2023-06-24 08:52:45 +02:00
tokio = {version = "1.28.1"}
serde = {version = "1.0.163", features = ["derive"]}
serde_json = {version= "1.0.96", features = ["raw_value"]}
serde-aux = "4.2.0"
serde_with = "3.0.0"
2023-05-26 15:58:13 +02:00
serde_repr = "0.1.12"
2023-05-05 14:38:05 +02:00
reqwest = {version = "0.11.16", features = ["multipart"]}
url = "2.3.1"
2023-05-13 16:24:34 +02:00
chrono = {version = "0.4.24", features = ["serde"]}
regex = "1.7.3"
2023-04-25 17:21:27 +02:00
custom_error = "1.9.2"
native-tls = "0.2.11"
tokio-tungstenite = {version = "0.19.0", features = ["native-tls"]}
2023-05-11 00:06:13 +02:00
futures-util = "0.3.28"
http = "0.2.9"
2023-05-25 21:11:08 +02:00
openssl = "0.10.52"
base64 = "0.21.2"
hostname = "0.3.1"
bitflags = { version = "2.2.1", features = ["serde"] }
lazy_static = "1.4.0"
poem = { version = "1.3.55", optional = true }
2023-05-26 19:02:07 +02:00
sqlx = { git = "https://github.com/zert3x/sqlx", branch="feature/skip", features = ["mysql", "sqlite", "json", "chrono", "ipnetwork", "runtime-tokio-native-tls", "any"], optional = true }
2023-05-25 21:11:08 +02:00
thiserror = "1.0.40"
jsonwebtoken = "8.3.0"
2023-07-01 19:29:50 +02:00
log = "0.4.19"
[dev-dependencies]
2023-06-24 08:52:45 +02:00
tokio = {version = "1.28.1", features = ["full"]}
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"
2023-05-28 00:52:11 +02:00
rusty-hook = "0.11.2"