-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.43 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
[workspace]
resolver = "2"
members = [
"saya/core","bin/saya"
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
license-file = "LICENSE"
repository = "https://github.com/dojoengine/saya.git"
[workspace.dependencies]
cainome = { git = "https://github.com/cartridge-gg/cainome", rev = "5c2616c273faca7700d2ba565503fcefb5b9d720", features = [ "abigen-rs" ] }
# saya
saya-core = { path = "saya/core" }
# saya-provider = { path = "crates/saya/provider" }
anyhow = "1.0.89"
async-trait = "0.1.82"
bigdecimal = "0.4.1"
futures = "0.3.30"
itertools = "0.12.1"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0", features = [ "arbitrary_precision" ] }
starknet-crypto = "0.7.1"
starknet = "0.12.0"
thiserror = "1.0.32"
tokio = { version = "1.39.2", features = [ "full" ] }
tracing = { version = "0.1.38", features = [ "log" ], default-features = false }
url = { version = "2.4.0", features = [ "serde" ] }
reqwest = { version = "0.12.7", features = [ "blocking", "json", "rustls-tls" ], default-features = false }
sqlx = { version = "0.8.2", features = [ "chrono", "macros", "regexp", "runtime-async-std", "runtime-tokio", "sqlite", "uuid" ] }
starknet-types-core = { version = "0.1.6", features = [ "arbitrary" ] }
console = "0.15.7"
clap = { version = "4.5.16", features = [ "derive", "env" ] }
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.16", features = [ "env-filter", "json" ] }