-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
38 lines (35 loc) · 1.08 KB
/
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
30
31
32
33
34
35
36
37
38
[package]
name = "prost-amino"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.5.0"
authors = ["Dan Burkert <[email protected]>", "zaki <[email protected]>", "Ismail Khoffi <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/tendermint/amino_rs"
documentation = "https://docs.rs/prost"
readme = "README.md"
description = "An implementation of the Amino serialization for Tendermint/Cosmos in the Rust Language. See https://github.com/tendermint/go-amino for details."
keywords = ["protobuf", "serialization"]
categories = ["encoding"]
[workspace]
members = [
"benchmarks",
"conformance",
"prost-build",
"prost-amino-derive",
"prost-types",
"protobuf",
"tests",
]
exclude = [
# The fuzz crate can't be compiled or tested without the 'cargo fuzz' command,
# so exclude it from normal builds.
"fuzz",
]
[dependencies]
byteorder = "1"
bytes = "0.5"
[dev-dependencies]
env_logger = { version = "0.5", default-features = false }
log = "0.4"
prost-amino-derive = { version = "0.5.0", path = "prost-amino-derive" }
quickcheck = "0.6"