PaperTrader/Cargo.toml

51 lines
1.1 KiB
TOML

[package]
name = "PaperTrader"
version = "0.4.0"
authors = ["ayham <altffour@protonmail.com>"]
edition = "2018"
[lib]
name = "libtrader"
path = "src/libtrader/libtrader.rs"
test = true
bench = true
doctest = false
[[bin]]
name = "sandbox"
path = "src/bin/sandbox/sandbox.rs"
test = false
bench = false
[features]
default = ["server"]
server = []
client = []
tls_no_verify = ["tokio-rustls/dangerous_configuration"]
[dependencies]
argh = "0.1.5"
chrono = "0.4"
tokio = { version = "1.6.1", features = [ "full" ] }
tokio-io = { version = "0.1.13" }
tokio-rustls = { version = "0.22.0" }
tokio-util = { version = "0.6.7" }
tokio-postgres = { version = "0.7.2" }
webpki-roots = { version = "0.21" }
futures = "0.3.16"
#postgres = { version = "0.4.0" }
postgres-types = { version = "0.2.1", features = ["derive"] }
log = "0.4"
fern = { version = "0.6.0", features = ["colored"] }
os_type="2.2"
ring="0.16.20"
bincode="1.3.3"
serde = { version = "1.0", features = ["derive"] }
ct-logs="0.7"
rust-crypto="0.2.36"
jsonwebtoken="7.2.0"
json="0.12.4"
rand="0.8.4"
rand_core = { version = "0.6", features = ["std"] }
argon2= { version = "0.2", features = ["password-hash"] }