vtse/vtse-server/Cargo.toml

25 lines
658 B
TOML
Raw Normal View History

2021-02-04 01:40:06 +00:00
[package]
name = "vtse-server"
version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
[dependencies]
2021-02-08 17:33:24 +00:00
anyhow = "1"
bytes = "1"
2021-02-11 18:55:28 +00:00
clap = "3.0.0-beta.2"
2021-02-08 17:33:24 +00:00
dotenv = "0.15"
2021-02-04 01:40:06 +00:00
log = "0.4"
2021-02-08 17:33:24 +00:00
rand = "0.8"
2021-02-09 01:54:00 +00:00
rust_decimal = "1.10.2"
2021-02-08 17:33:24 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2021-02-04 01:40:06 +00:00
simple_logger = "1.11"
2021-02-08 17:33:24 +00:00
sodiumoxide = "0.2"
2021-02-08 23:58:46 +00:00
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "macros", "uuid", "postgres", "decimal" ] }
2021-02-08 17:33:24 +00:00
thiserror = "1"
2021-02-04 01:40:06 +00:00
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["net"] }
uuid = { version = "0.8", features = ["v4"] }
2021-02-08 23:58:46 +00:00
vtse-common = { path = "../vtse-common" }