mirror of
https://github.com/MAGICGrants/cuprate-for-explorer.git
synced 2026-01-08 19:27:54 -05:00
* add fuzz tests * fix CI * fix found vuln * fix deny * add more targets * fmt + clippy * Add exclude for fuzz * add defaults rather than exclude * add fuzz to CI * remove clippy run * add readme * review fixes * Update Cargo.toml Co-authored-by: hinto-janai <hinto.janai@protonmail.com> --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "cuprate-levin"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A crate for working with the Levin protocol in Rust."
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/net/levin"
|
|
|
|
[features]
|
|
default = []
|
|
tracing = ["dep:tracing", "tokio-util/tracing"]
|
|
|
|
[dependencies]
|
|
cuprate-helper = { workspace = true, default-features = false, features = ["cast"] }
|
|
|
|
cfg-if = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
bytes = { workspace = true, features = ["std"] }
|
|
bitflags = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["codec"]}
|
|
|
|
tracing = { workspace = true, features = ["std"], optional = true }
|
|
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
proptest = { workspace = true }
|
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
|
tokio-util = { workspace = true, features = ["io-util"]}
|
|
tokio = { workspace = true, features = ["full"] }
|
|
futures = { workspace = true, features = ["std"] }
|
|
|
|
[lints]
|
|
workspace = true
|