-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
22 lines (21 loc) · 904 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
[package]
name = "ola-lang-abi"
version = "1.0.7"
edition = "2021"
license = "MIT"
description = "Ola Smart Contract ABI parsing library"
authors = ["[email protected]"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
keywords = ["abi", "ola", "olac", ]
documentation = "https://olang.gitbook.io/ola-lang/"
homepage = "https://github.com/Sin7Y/ola-lang-abi"
[dependencies]
anyhow = { version = "1.0.75", default-features = false, features = ["std"] }
nom = { version = "7.1.3", default-features = false, features = ["std"] }
serde = { version = "1.0.193", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.108", default-features = false, features = ["std"] }
tiny-keccak = { version = "2.0", default-features = false, features = ["keccak"] }
mini-goldilocks = "0.1.1"
[dev-dependencies]
pretty_assertions = "1.0"
rand = "0.8"