PaperTrader/Cargo.toml

51 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2020-06-14 06:25:22 +00:00
[package]
name = "PaperTrader"
2020-08-07 09:48:01 +00:00
version = "0.4.0"
2021-05-19 12:35:15 +00:00
authors = ["ayham <altffour@protonmail.com>"]
2020-06-14 06:25:22 +00:00
edition = "2018"
[lib]
name = "libtrader"
path = "src/libtrader/libtrader.rs"
test = true
bench = true
2020-08-03 17:49:11 +00:00
doctest = false
2020-06-14 06:25:22 +00:00
[[bin]]
name = "sandbox"
path = "src/bin/sandbox/sandbox.rs"
test = false
bench = false
2020-07-23 13:07:25 +00:00
[features]
default = ["server"]
2020-08-10 10:09:13 +00:00
server = []
2020-07-28 19:43:00 +00:00
client = []
2021-05-26 06:30:52 +00:00
tls_no_verify = ["tokio-rustls/dangerous_configuration"]
2020-07-23 13:07:25 +00:00
2020-06-14 06:25:22 +00:00
[dependencies]
argh = "0.1.5"
2020-06-15 03:24:08 +00:00
chrono = "0.4"
2021-05-30 17:08:02 +00:00
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" }
2021-05-30 18:47:27 +00:00
webpki-roots = { version = "0.21" }
futures = "0.3.16"
2021-05-30 17:08:02 +00:00
#postgres = { version = "0.4.0" }
postgres-types = { version = "0.2.1", features = ["derive"] }
2020-07-28 19:43:00 +00:00
log = "0.4"
fern = { version = "0.6.0", features = ["colored"] }
2020-07-31 07:40:34 +00:00
os_type="2.2"
ring="0.16.20"
bincode="1.3.3"
2021-05-30 17:08:02 +00:00
serde = { version = "1.0", features = ["derive"] }
2020-08-06 09:50:24 +00:00
ct-logs="0.7"
2020-08-12 03:41:02 +00:00
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"] }