forked from near/near-gas-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
22 lines (19 loc) · 801 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 = "near-gas"
version = "0.2.5"
edition = "2021"
authors = ["Serhieiev Ivan <[email protected]>", "Vlad Frolov <[email protected]>"]
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.4", optional = true }
[dev-dependencies]
serde_json = { version = "1" }
[features]
abi = ["borsh/unstable__schema", "schemars"]