mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
Fixes #2948 So it seems that it's easiest just to use an old-fashioned semver string. This means we'll need to keep a version matrix in the docs of which components are supported and for how long, but it's better than having different version schemes for different Firezone components altogether.
17 lines
478 B
TOML
17 lines
478 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.4", features = ["derive", "env"] }
|
|
ctrlc = "3.4"
|