-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
29 lines (26 loc) · 933 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 = "near-gas"
version = "0.3.0"
edition = "2021"
authors = [
"Serhieiev Ivan <serhieievivan6@gmail.com>",
"Vlad Frolov <frolvlad@gmail.com>",
]
repository = "https://github.com/near/near-gas"
rust-version = "1.68.0"
categories = ["parser-implementations", "value-formatting", "no-std"]
license = "MIT OR Apache-2.0"
description = "a small crate to work with NEAR Gas unit values ergonomically and efficiently (NEAR Protocol)"
[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
borsh = { version = "1", features = ["derive"], optional = true }
schemars = { version = "0.8.8", optional = true }
interactive-clap = { version = ">=0.2,<0.4", optional = true }
[dev-dependencies]
serde_json = { version = "1" }
[features]
abi = ["borsh/unstable__schema", "schemars"]
serde = ["dep:serde"]
interactive-clap = ["dep:interactive-clap"]
borsh = ["dep:borsh"]
schemars = ["dep:schemars"]