vtse/vtse-server/Cargo.toml

22 lines
600 B
TOML
Raw Normal View History

2021-02-03 17:40:06 -08:00
[package]
name = "vtse-server"
version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
[dependencies]
2021-02-08 09:33:24 -08:00
anyhow = "1"
bytes = "1"
dotenv = "0.15"
2021-02-03 17:40:06 -08:00
log = "0.4"
2021-02-08 09:33:24 -08:00
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2021-02-03 17:40:06 -08:00
simple_logger = "1.11"
2021-02-08 09:33:24 -08:00
sodiumoxide = "0.2"
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "macros", "uuid", "postgres" ] }
thiserror = "1"
2021-02-03 17:40:06 -08:00
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["net"] }
uuid = { version = "0.8", features = ["v4"] }
2021-02-08 09:33:24 -08:00
vtse-common = { path = "../vtse-common" }