forked from ava-labs/avalanche-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 861 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
[package]
# https://crates.io/crates/avalanche-consensus/versions
name = "avalanche-consensus"
version = "0.1.1"
edition = "2021"
rust-version = "1.70" # use "rustup override set stable" to overwrite current toolchain
publish = true
description = "Avalanche consensus"
license-file = "LICENSE"
homepage = "https://avax.network"
repository = "https://github.com/ava-labs/avalanche-rs/tree/main/crates/avalanche-consensus"
[dependencies]
avalanche-types = { version = "0.1.1", path = "../../crates/avalanche-types", features = [] } # https://crates.io/crates/avalanche-types
bytes = "1.4.0"
log = "0.4.20"
serde = { version = "1.0.186", features = ["derive"] } # https://github.com/serde-rs/serde/releases
thiserror = "1.0.47"
[dev-dependencies]
env_logger = "0.10.0"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]