-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (28 loc) · 998 Bytes
/
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
[package]
name = "nftbk"
version = "0.1.0"
edition = "2021"
description = "CLI tool for backing up NFT metadata and content"
[dependencies]
tokio = { version = "1.28", features = ["full"] }
toml = "0.7"
clap = { version = "4.3", features = ["derive"] }
alloy = { version = "0.9.2", features = ["full"] }
alloy-contract = { version = "0.9.2" }
alloy-sol-types = "0.8.19"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
url = "2.4"
futures = "0.3"
tezos-core = { git = "https://github.com/0xmichalis/tezos-rust-sdk", features = ["full_crypto"] }
tezos-contract = { git = "https://github.com/0xmichalis/tezos-rust-sdk" }
tezos-michelson = { git = "https://github.com/0xmichalis/tezos-rust-sdk" }
tezos-rpc = { git = "https://github.com/0xmichalis/tezos-rust-sdk" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
hex = "0.4.3"
scraper = "0.17"
flate2 = "1.0"
base64 = "0.21"