You've already forked ipfilter
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[workspace]
|
|
members = ["cli", "ipfilter"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
authors = ["David Skrundz"]
|
|
edition = "2024"
|
|
license-file = "LICENSE.md"
|
|
rust-version = "1.85.0"
|
|
|
|
[workspace.lints.rust]
|
|
arithmetic_overflow = "forbid"
|
|
missing_docs = "forbid"
|
|
unsafe_code = "forbid"
|
|
unused_doc_comments = "forbid"
|
|
|
|
[workspace.lints.clippy]
|
|
arithmetic_side_effects = "forbid"
|
|
as_conversions = "forbid"
|
|
checked_conversions = "forbid"
|
|
default_union_representation = "forbid"
|
|
expect_used = "forbid"
|
|
indexing_slicing = "forbid"
|
|
integer_division = "forbid"
|
|
integer_division_remainder_used = "forbid"
|
|
transmute_undefined_repr = "forbid"
|
|
unchecked_duration_subtraction = "forbid"
|
|
unwrap_used = "forbid"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
opt-level = 3
|
|
overflow-checks = true
|
|
strip = "debuginfo"
|
|
|
|
[workspace.dependencies]
|
|
ipfilter = { path = "ipfilter", version = "=0.0.1", default-features = false }
|
|
|
|
anyhow = { version = "^1", default-features = false }
|
|
bincode = { version = "^2", default-features = false }
|
|
clap = { version = "^4", default-features = false, features = ["std"] }
|
|
csv = { version = "^1", default-features = false }
|
|
ipnet = { version = "^2", default-features = false }
|
|
iprange = { version = "^0.6", default-features = false }
|
|
itertools = { version = "^0.14", default-features = false }
|
|
serde = { version = "^1", default-features = false }
|