chorus/Cargo.toml

45 lines
1.3 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-07-28 17:33:23 +02:00
tokio = {version = "1.29.1", features = ["macros"]}
serde = {version = "1.0.171", features = ["derive"]}
serde_json = {version= "1.0.103", features = ["raw_value"]}
serde-aux = "4.2.0"
serde_with = "3.0.0"
2023-07-28 17:33:23 +02:00
serde_repr = "0.1.14"
reqwest = {version = "0.11.18", features = ["multipart"]}
url = "2.4.0"
chrono = {version = "0.4.26", features = ["serde"]}
regex = "1.9.1"
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-07-28 17:33:23 +02:00
openssl = "0.10.55"
2023-05-25 21:11:08 +02:00
base64 = "0.21.2"
hostname = "0.3.1"
2023-07-28 17:33:23 +02:00
bitflags = { version = "2.3.3", features = ["serde"] }
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"
2023-07-28 17:33:23 +02:00
poem = { version = "1.3.56", 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-07-28 17:33:23 +02:00
thiserror = "1.0.43"
2023-05-25 21:11:08 +02:00
jsonwebtoken = "8.3.0"
2023-07-28 17:33:23 +02:00
log = "0.4.19"
async-trait = "0.1.71"
chorus-macros = {path = "chorus-macros"}
[dev-dependencies]
2023-07-28 17:33:23 +02:00
tokio = {version = "1.29.1", features = ["full"]}
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"
2023-07-28 17:33:23 +02:00
rusty-hook = "0.11.2"