-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 864 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
[package]
name = "stormint"
version = "0.1.0"
edition = "2021"
authors = ["confucian <[email protected]>"]
description = "A blazing fast script that supports multi-account minting of FreeMint tokens."
repository = "https://github.com/Confucian-e/stormint.git"
documentation = "https://docs.rs/stormint"
readme = "README.md"
license = "MIT"
keywords = ["blockchain", "ethereum", "token", "mint"]
categories = ["cryptography::cryptocurrencies"]
include = ["/src/*", "/Cargo.toml", "/README.md", "/LICENSE"]
[dependencies]
alloy = { version = "0.6", features = ["full", "signer-mnemonic"] }
tokio = { version = "1.41", features = ["full"] }
eyre = "0.6"
rayon = "1.10"
indicatif = "0.17"
futures = "0.3"
[dev-dependencies]
alloy = { version = "0.6", features = ["provider-anvil-node", "getrandom"] }
alloy-node-bindings = "0.6"
serde = "1.0"
serde_json = "1.0"