-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1.32 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
[workspace]
members = ["model", "db-sqlite", "core", "cli", "alpaca-broker"]
[workspace.package]
name = "trust"
version = "0.2.1"
authors = ["Matias Villaverde <[email protected]>"]
rust-version = "1.68.2"
license = "MIT"
repository = "https://github.com/integer256/trust"
readme = "README.md"
[workspace.dependencies]
chrono = "0.4.24"
diesel = { version = "2.0.3", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "chrono"] }
diesel_migrations = "2.0.0"
diesel-derive-enum = { version = "2.0.1", features = ["sqlite"] }
uuid = { version = "1.3.1", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
] }
clap = { version = "4.2.4", features = ["derive"] }
tabled = { version = "0.12", features = ["color"] }
dialoguer = { version = "0.10.4", features = ["fuzzy-select"] }
rust_decimal = "1.29"
rust_decimal_macros = "1.29"
tracing = "0.1"
tracing-subscriber = "0.3"
apca = "0.26.2"
num-decimal = {version = "0.2.4", default-features = false, features = ["num-v04", "serde"]}
tokio = {version = "1.28.2", default-features = false, features = ["net", "rt-multi-thread", "macros"]}
dotenv = "0.15.0"
shellexpand = "2.0"
keyring = "2"
serde_json = "1.0"