forked from cartridge-gg/slot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 820 Bytes
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
[package]
name = "slot"
version = "0.5.9"
edition = "2021"
[dependencies]
katana-primitives = { git = "https://github.com/dojoengine/dojo", rev = "c83936", default-features = false, features = [
"serde",
"blockifier",
] }
anyhow = "1.0.75"
axum = "0.6"
clap = { version = "4.2", features = ["derive"] }
chrono = "0.4.31"
ctrlc = "3.4.1"
dirs = "5"
env_logger = "0.10"
graphql_client = "0.13.0"
log = "0.4"
rand = "0.8.4"
reqwest = { version = "0.11.20", default-features = false, features = [
"rustls-tls",
"json",
] }
serde = "1"
serde_json = "1"
shellexpand = "3.1.0"
thiserror = "1.0.32"
tokio = { version = "1.18.2", features = ["full", "sync"] }
tower-http = "0.4"
tracing = "0.1.34"
urlencoding = "2"
webbrowser = "0.8"
starknet = "0.8.0"
url = "2.2.2"
[[bin]]
name = "slot"
path = "src/main.rs"