forked from cartridge-gg/cainome
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (53 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
60 lines (53 loc) · 1.51 KB
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
53
54
55
56
57
58
59
60
[package]
name = "cainome"
version = "0.0.4"
edition = "2021"
[workspace]
members = [
"crates/cairo-serde",
"crates/parser",
"crates/rs",
"crates/rs-macro",
]
[workspace.dependencies]
# workspace crates
cainome-cairo-serde = { path = "crates/cairo-serde" }
cainome-parser = { path = "crates/parser" }
cainome-rs = { path = "crates/rs" }
anyhow = "1.0"
async-trait = "0.1.68"
convert_case = "0.6.0"
serde = { version = "1.0", default-features = false, features = ["alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
starknet = "0.9.0"
thiserror = "1.0"
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.16", features = [ "env-filter", "json" ] }
url = "2.4.0"
[dependencies]
cainome-parser.workspace = true
cainome-cairo-serde.workspace = true
cainome-rs.workspace = true
cainome-rs-macro = { path = "crates/rs-macro", optional = true }
async-trait.workspace = true
anyhow.workspace = true
camino = { version = "1.1.2", features = [ "serde1" ] }
clap = { version = "4.2", features = [ "derive" ] }
clap_complete = "4.3"
convert_case.workspace = true
serde.workspace = true
serde_json.workspace = true
starknet.workspace = true
thiserror.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
url.workspace = true
tokio = { version = "1.15.0", features = ["full"], optional = true }
[features]
default = []
abigen-rs = ["cainome-rs-macro"]
build-binary = ["tokio"]
[[bin]]
name = "cainome"
path = "src/bin/cli/main.rs"
required-features = ["build-binary"]