-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (51 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
59 lines (51 loc) · 1.67 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
[package]
name = "starknet-rust-core"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
readme.workspace = true
repository.workspace = true
description = """
Core structures for the starknet crate
"""
keywords.workspace = true
exclude = ["test-data/**"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
starknet-rust-crypto = { workspace = true, features = ["alloc"] }
starknet-rust-core-derive.workspace = true
base64 = { workspace = true, features = ["alloc"] }
crypto-bigint.workspace = true
flate2 = { workspace = true, optional = true }
foldhash.workspace = true
hex = { workspace = true, features = ["alloc"] }
indexmap = { workspace = true, features = ["serde"] }
num-traits.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["alloc", "raw_value"] }
serde_json_pythonic = { workspace = true, features = ["alloc", "raw_value"] }
serde_with = { workspace = true, features = ["alloc", "macros"] }
sha3.workspace = true
starknet-types-core = { workspace = true, features = ["curve", "serde", "num-traits"] }
semver.workspace = true
[dev-dependencies]
bincode.workspace = true
criterion.workspace = true
hex-literal.workspace = true
starknet-rust-core = { path = ".", features = ["no_unknown_fields"] }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test.workspace = true
[features]
default = ["std"]
std = ["dep:flate2", "starknet-rust-crypto/std", "starknet-types-core/std", "indexmap/std"]
no_unknown_fields = []
[[bench]]
name = "cairo0_class_hash"
harness = false
[[bench]]
name = "sierra_class_hash"
harness = false
[lints]
workspace = true