forked from 0xMiden/clob-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (19 loc) · 750 Bytes
/
Cargo.toml
File metadata and controls
20 lines (19 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "miden-order-book"
version = "0.1.0"
edition = "2021"
[dependencies]
miden-client = { version = "0.5", features = ["concurrent", "testing", "sqlite", "tonic"] }
miden-lib = { version = "0.5", default-features = false }
rusqlite = { version = "0.31", features = ["vtab", "array", "bundled"]}
log = { version = "0.4.22" }
colored = { version = "2.1.0" }
clap = { version = "4.5", features = ["derive"] }
rand = { version = "0.8.5" }
env_logger = { version = "0.11.5" }
serde = { version = "1.0", features = ["derive"] }
toml = { version = "0.8.9" }
tokio = { version = "1.40.0", features = ["rt-multi-thread", "net", "macros"] }
tonic = { version = "0.12.3" }
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3" }