-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
52 lines (47 loc) · 1.24 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "mate"
version = "0.1.0"
edition = "2018"
[[bin]]
name = "mate"
path = "src/main.rs"
[[bin]]
name = "mate-collector"
path = "collector/src/main.rs"
[[bin]]
name = "mate-api"
path = "api/src/main.rs"
[dependencies]
accounts = {path = "./crates/accounts", version = "0.1.0"}
actix-cors = "0.5.4"
actix-rt = "1"
actix-web = "3.3"
async-std = "1.6.3"
async-trait = "0.1"
bytes = "1"
clap = { version = "^3.0.0-rc.11", features = ["derive", "env"] }
chrono = { version = "0.4", features = [ "serde" ] }
diesel = { version = "1.4.4", features = [ "chrono", "postgres" ] }
diesel_migrations = { version = "1.4.0", features = [ "postgres" ]}
futures = "0.3.5"
log = "~0.4.14"
magic-crypt = "3.1"
matelog = {path = "./crates/matelog", version = "0.1.0"}
num-traits = "0.2"
reqwest = "~0.11.9"
rust_decimal = "1.20"
rust_decimal_macros = "1.20"
rust-s3 = { version = "0.28.0", features = ["blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
ta = {path = "./crates/ta", version = "0.1.0"}
tda-sdk = "0.1.2"
tokio = { version = "1", features = ["full"] }
[workspace]
members = [
"crates/accounts",
"crates/matelog",
"crates/ta",
"collector",
"api",
]