forked from Ratimon/solid-grinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (20 loc) · 840 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
[package]
name = "solid-grinder"
version = "1.0.0"
edition = "2021"
description = "A CLI that goes along with building blocks of smart contract. Along with our front-end snippets, this toolbox can reduce L2 gas cost by encoding calldata for dApps development to use as little bytes of calldata as possible."
repository = "https://github.com/Ratimon/solid-grinder"
homepage = "https://github.com/Ratimon/solid-grinder"
documentation = "https://github.com/Ratimon/solid-grinder#README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
handlebars = "3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1.7.3"
clap = { version = "4.2.2", features = ["derive"] }
itertools = "0.11.0"
[[bin]]
path= "cli/main.rs"
name= "solid-grinder"