forked from huhn511/shimmer-nft-collection-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (37 loc) · 1.02 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
[package]
name = "shimmer-nft-collection-rust"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "create-account"
path = "src/create-account/main.rs"
[[bin]]
name = "get-address"
path = "src/get-address/main.rs"
[[bin]]
name = "create-collection-nft"
path = "src/create-collection-nft/main.rs"
[[bin]]
name = "create-nfts"
path = "src/create-nfts/main.rs"
[[bin]]
name = "get-balance"
path = "src/get-balance/main.rs"
[[bin]]
name = "send-nfts-to-csv"
path = "src/send-nfts-to-csv/main.rs"
[[bin]]
name = "lock-collection-nft"
path = "src/lock-collection-nft/main.rs"
[[bin]]
name = "generate-mnemonic"
path = "src/generate-mnemonic/main.rs"
[[bin]]
name = "generate-new-address"
path = "src/generate-new-address/main.rs"
[dependencies]
tokio = { version = "1.21.2", default-features = false }
iota-wallet = { git = "https://github.com/iotaledger/wallet.rs", branch = "develop" }
iota-client = { git = "https://github.com/iotaledger/iota.rs", branch = "develop" }
dotenv = { version = "0.15.0", default-features = false }
csv = "1.1"