-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (70 loc) · 3.22 KB
/
Copy pathCargo.toml
File metadata and controls
77 lines (70 loc) · 3.22 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "starkli"
version = "0.4.2"
authors = ["Jonathan LEI <me@xjonathan.dev>"]
license = "MIT OR Apache-2.0"
edition = "2021"
description = "Starkli (/ˈstɑːrklaɪ/), a blazing fast CLI tool for Starknet powered by starknet-rs"
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.68"
auto_impl = "1.1.0"
bigdecimal = "0.4.1"
cairo-starknet-1-0-0 = { package = "cairo-lang-starknet", git = "https://github.com/starkware-libs/cairo", tag = "v1.0.0" }
cairo-starknet-1-1-1 = { package = "cairo-lang-starknet", git = "https://github.com/starkware-libs/cairo", tag = "v1.1.1" }
cairo-starknet-2-0-2 = { package = "cairo-lang-starknet", git = "https://github.com/starkware-libs/cairo", tag = "v2.0.2" }
cairo-starknet-2-3-1 = { package = "cairo-lang-starknet", git = "https://github.com/starkware-libs/cairo", tag = "v2.3.1" }
cairo-starknet-2-5-4 = { package = "cairo-lang-starknet", git = "https://github.com/starkware-libs/cairo", tag = "v2.5.4" }
cairo-starknet-2-6-4 = { package = "cairo-lang-starknet-classes", git = "https://github.com/starkware-libs/cairo", tag = "v2.6.4" }
cairo-starknet-2-9-4 = { package = "cairo-lang-starknet-classes", git = "https://github.com/starkware-libs/cairo", tag = "v2.9.4" }
cairo-starknet-2-12-0 = { package = "cairo-lang-starknet-classes", git = "https://github.com/starkware-libs/cairo", tag = "v2.12.0" }
chrono = "0.4.26"
clap = { version = "4.3.8", features = ["derive", "env", "string"] }
clap_complete = "4.3.1"
coins-bip32 = "0.11.1"
colored = "2.0.0"
colored_json = "3.2.0"
env_logger = "0.10.0"
flate2 = "1.0.28"
hex = "0.4.3"
hex-literal = "0.4.1"
indexmap = "2.1.0"
log = "0.4.19"
num-bigint = "0.4.3"
num-integer = "0.1.45"
num-traits = "0.2.19"
rand = "0.8.5"
rayon = "1.7.0"
regex = "1.8.4"
rpassword = "7.2.0"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = { version = "1.0.99", features = ["preserve_order"] }
serde_json_pythonic = { version = "0.1.2", default-features = false, features = ["alloc", "raw_value"] }
serde_with = "3.11.0"
sha2 = "0.10.8"
shellexpand = "3.1.0"
starknet = "0.14.0"
starknet-crypto = "0.7.4"
tempfile = "3.8.0"
thiserror = "1.0.40"
tokio = { version = "1.28.2", default-features = false, features = ["macros"] }
toml = "0.8.8"
url = "2.4.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1.28.2", default-features = false, features = ["rt", "time", "sync"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
etcetera = "0.8.0"
tokio = { version = "1.28.2", default-features = false, features = ["rt-multi-thread"] }
[target.'cfg(target_os = "windows")'.build-dependencies]
vergen = { version = "8.2.1", features = ["build", "git", "gitcl"] }
[target.'cfg(not(target_os = "windows"))'.build-dependencies]
vergen = { version = "8.2.1", features = ["build", "git", "git2"] }
[features]
default = ["ledger"]
ledger = ["starknet/ledger"]
# We need https://github.com/roynalnaruto/eth-keystore-rs/pull/15 for Android.
#
# Ideally, we should only patch this for Android. However, Cargo does not support target-specific
# patches. So we have to have unconditionally until a new `eth-keystore` release is made.
[patch.crates-io]
eth-keystore = { git = "https://github.com/roynalnaruto/eth-keystore-rs", rev = "85ea8cd5b4dbfcdb3af50e1835540fee83d3b966" }