Skip to content

Commit

Permalink
Fix linter warning about non-existent cargo feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronosXYZ committed Sep 23, 2024
1 parent 2b6dbad commit 83f1fb1
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
[package]
name = "cometbft-proto"
version = "0.1.0-alpha.2"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
name = "cometbft-proto"
version = "0.1.0-alpha.2"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/cometbft/cometbft-rs"
readme = "README.md"
categories = ["cryptography", "cryptography::cryptocurrencies", "network-programming"]
keywords = ["blockchain", "cometbft", "tendermint", "protobuf"]
readme = "README.md"
categories = [
"cryptography",
"cryptography::cryptocurrencies",
"network-programming",
]
keywords = ["blockchain", "cometbft", "tendermint", "protobuf"]

description = """
A Rust implementation of the CometBFT proto structs.
Expand All @@ -17,20 +21,30 @@ description = """
default = []
grpc = ["grpc-server"]
grpc-server = ["tonic"]
grpc-client = []

[package.metadata.docs.rs]
all-features = true

[dependencies]
prost = { version = "0.12", default-features = false }
prost-types = { version = "0.12", default-features = false }
bytes = { version = "1.0", default-features = false, features = ["serde"]}
bytes = { version = "1.0", default-features = false, features = ["serde"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_bytes = { version = "0.11", default-features = false, features = ["alloc"] }
subtle-encoding = { version = "0.5", default-features = false, features = ["hex", "base64", "alloc"] }
serde_bytes = { version = "0.11", default-features = false, features = [
"alloc",
] }
subtle-encoding = { version = "0.5", default-features = false, features = [
"hex",
"base64",
"alloc",
] }
num-traits = { version = "0.2", default-features = false }
num-derive = { version = "0.4", default-features = false }
time = { version = "0.3", default-features = false, features = ["macros", "parsing"] }
time = { version = "0.3", default-features = false, features = [
"macros",
"parsing",
] }
flex-error = { version = "0.4.4", default-features = false }
tonic = { version = "0.10", optional = true }

Expand Down

0 comments on commit 83f1fb1

Please sign in to comment.