forked from ava-labs/avalanche-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 863 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
29
30
31
32
33
[workspace]
members = [
"avalanchego-conformance-sdk",
"core/cert-manager",
"core/network",
"core/server",
"crates/avalanche-consensus",
"crates/avalanche-types",
"tests/avalanche-e2e",
"tests/avalanchego-byzantine",
"tests/avalanchego-conformance",
]
# by default, only document and build key library crates
default-members = ["crates/avalanche-types", "crates/avalanche-consensus"]
resolver = "2"
[workspace.lints.clippy]
# suspicious = "deny"
# style = "deny"
# complexity = "deny"
# perf = "deny"
# pedantic = "deny"
# restriction = "deny"
# nursery = "deny"
# cargo = "deny"
[workspace.package]
version = "0.1.1"
authors = ["gyuho", "hexfusion", "exdx", "richardpringle"]
description = "A collection of Avalanche-specific Rust crates"
license-file = "LICENSE"
readme = "README.md"
homepage = "https://www.avax.network/"