mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-21 20:41:57 +00:00
Motivated by: #4340. I also activated [`clippy::unnnecessary_wraps`](https://rust-lang.github.io/rust-clippy/master/#/unnecessary_wraps) which does create some false-positives for the platform-specific code but is IMO overall a net-positive. With the amount of Rust code and crates increasing, it is good to have tools point out simplifications like these as they are otherwise hard to spot, especially across crate boundaries.
19 lines
489 B
TOML
19 lines
489 B
TOML
[package]
|
|
name = "firezone-cli-utils"
|
|
# mark:automatic-version
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ip_network = "0.4"
|
|
url = { version = "2.3.1", default-features = false }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
tracing = { workspace = true }
|
|
tracing-log = "0.2"
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
|
|
[lints]
|
|
workspace = true
|