chorus/Cargo.toml

36 lines
1.1 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"
[dependencies]
2023-05-25 21:11:08 +02:00
tokio = {version = "1.28.1", features = ["rt", "macros", "rt-multi-thread", "full"]}
serde = {version = "1.0.162", features = ["derive"]}
serde_json = { version = "1.0.96", features = ["raw_value"] }
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"
2023-04-28 23:21:55 +02:00
tokio-tungstenite = {version = "0.18.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"] }
atomic = "0.5.3"
bigdecimal = "0.3.1"
num-bigint = "0.4.3"
lazy_static = "1.4.0"
poem = { version = "1.3.55", optional = true }
sqlx = { version = "0.6.3", features = ["mysql", "sqlite", "json", "chrono", "ipnetwork", "runtime-tokio-native-tls", "any"], optional = true }
thiserror = "1.0.40"
jsonwebtoken = "8.3.0"
[dev-dependencies]
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"