This repository has been archived by the owner on Dec 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
44 lines (39 loc) · 1.6 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
[package]
name = "nile-rs"
version = "0.1.0"
edition = "2021"
include = ["/base"]
[lib]
name = "nile_rs"
path = "src/nile-rs/lib.rs"
[[bin]]
name = "nile-rs"
doc = false
[dependencies]
anyhow = "1.0.69"
async-trait = "0.1.64"
clap = { version = "4.1.4", features = ["derive"] }
cairo-lang-starknet = { version = "1.0.0-alpha.6", git = "https://github.com/starkware-libs/cairo.git", rev = "439da05a" }
dotenv = "0.15.0"
figment = { version = "0.10", features = ["toml", "env", "test"] }
# This was necessary because of how scarb 0.1.0 was managing the Cairo compiler dependencies.
# The issue was fixed in scarb 0.2.0-alpha, and we will update accordingly when we upgrade it.
scarb = { version = "0.1.0", git = "https://github.com/ericnordelo/scarb.git", branch = "fix/cairo-dependencies" }
serde = "1.0.152"
serde_json = "1.0.93"
starknet-accounts = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a" }
starknet-core = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a" }
starknet-contract = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a" }
starknet-crypto = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a" }
starknet-providers = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a" }
starknet-signers = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "e72cc0a" }
tokio = { version = "1", features = ["full"] }
url = "2.3.1"
walkdir = "2.3.2"
reqwest = "0.11.14"
[dev-dependencies]
assert_cmd = "2.0.8"
assert_fs = "1.0.10"
nile-test-utils = { path = "crates/nile-test-utils"}
snapbox = "0.4.6"
httpmock = "0.6.7"