-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (23 loc) · 931 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
[package]
name = "antelope"
version = "0.2.0"
authors = ["Denis <[email protected]>", "Yaro <[email protected]>"]
description = "Antelope Standard Library"
homepage = "https://github.com/pinax-network/antelope.rs"
repository = "https://github.com/pinax-network/antelope.rs"
categories = [ "api-bindings", "cryptography::cryptocurrencies", "data-structures", "parsing", "value-formatting"]
keywords = ["antelope", "blockchain", "crypto"]
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
time = { version = "0.3.20", features = ["parsing", "formatting"] }
[dev-dependencies]
proptest = "1.0.0"
[package.metadata.playground]
default-features = true
# to use cargo cmd install cargo-cmd with `cargo install cargo-cmd` and run `cargo cmd check`
[package.metadata.commands]
check = "cargo fmt && cargo clippy -- -D warnings && cargo test"