forked from xJonathanLEI/starknet-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (49 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "starknet"
version = "0.2.0"
authors = ["Jonathan LEI <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
documentation = "https://docs.rs/starknet"
repository = "https://github.com/xJonathanLEI/starknet-rs"
homepage = "https://starknet.rs/"
description = """
Complete Starknet library in Rust
"""
keywords = ["ethereum", "starknet", "web3"]
exclude = [".github/**", "images/**"]
[workspace]
members = [
"starknet-core",
"starknet-providers",
"starknet-contract",
"starknet-crypto",
"starknet-signers",
"starknet-accounts",
"starknet-ff",
"starknet-macros",
"starknet-curve",
"starknet-crypto-codegen",
"examples/starknet-wasm",
]
[package.metadata.docs.rs]
all-features = true
[dependencies]
starknet-core = { version = "0.2.0", path = "./starknet-core", default-features = false }
starknet-providers = { version = "0.2.0", path = "./starknet-providers" }
starknet-contract = { version = "0.1.0", path = "./starknet-contract" }
starknet-signers = { version = "0.1.0", path = "./starknet-signers" }
starknet-accounts = { version = "0.1.0", path = "./starknet-accounts" }
starknet-macros = { version = "0.1.0", path = "./starknet-macros" }
[dev-dependencies]
serde_json = "1.0.74"
tokio = { version = "1.15.0", features = ["full"] }
url = "2.2.2"
[features]
default = ["bigdecimal"]
bigdecimal = ["starknet-core/bigdecimal"]
no_unknown_fields = [
"starknet-core/no_unknown_fields",
"starknet-providers/no_unknown_fields",
]