PaperTrader/Cargo.toml

48 lines
894 B
TOML
Raw 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"
2020-06-14 06:25:22 +00:00
authors = ["realaltffour <56314286+realaltffour@users.noreply.github.com>"]
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]
2020-08-11 10:47:29 +00:00
default = []
2020-08-10 10:09:13 +00:00
server = []
2020-07-28 19:43:00 +00:00
client = []
2020-08-06 09:50:24 +00:00
tls_no_verify = ["rustls/dangerous_configuration"]
2020-07-23 13:07:25 +00:00
2020-06-14 06:25:22 +00:00
[dependencies]
2020-06-15 03:24:08 +00:00
chrono = "0.4"
2020-06-30 04:15:22 +00:00
postgres = "0.17.3"
postgres-types = {version = "0.1.1", features = ["derive"]}
2020-07-28 19:43:00 +00:00
log = "0.4"
simplelog = "0.8.0"
enum_primitive = "*"
2020-07-31 07:40:34 +00:00
os_type="2.2"
2020-08-03 13:44:17 +00:00
ring="*"
data-encoding="*"
2020-08-04 17:13:46 +00:00
bincode="*"
2020-08-06 06:49:27 +00:00
serde={ version = "1.0", features = ["derive"] }
rustls="0.18.0"
mio={ version = "0.7.0", features = ["os-poll", "tcp"] }
webpki="0.21.0"
2020-08-06 09:50:24 +00:00
webpki-roots="0.20"
ct-logs="0.7"
2020-08-06 06:49:27 +00:00
either="*"
2020-08-07 16:14:37 +00:00
arrayref="*"
2020-08-12 03:41:02 +00:00
rust-crypto="0.2.36"
jsonwebtoken="*"
json="*"