chorus/Cargo.toml

20 lines
559 B
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-04-28 20:30:31 +02:00
tokio = {version = "1.27.0", features = ["rt", "macros", "rt-multi-thread"]}
2023-04-10 14:18:17 +02:00
serde = {version = "1.0.159", features = ["derive"]}
2023-04-04 16:42:20 +02:00
serde_json = "1.0.95"
serde-aux = "4.2.0"
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"