Skip to content

Commit

Permalink
build(deps): pin dependencies according to cargo semver
Browse files Browse the repository at this point in the history
> This guide uses the terms “major” and “minor” assuming this relates to
> a “1.0.0” release or later. Initial development releases starting with
> “0.y.z” can treat changes in “y” as a major release, and “z” as a minor
> release. “0.0.z” releases are always major changes. This is because
> Cargo uses the convention that only changes in the left-most non-zero
> component are considered incompatible.

https://doc.rust-lang.org/cargo/reference/semver.html

Signed-off-by: Christina Sørensen <ces@fem.gg>
  • Loading branch information
cafkafk committed Jan 15, 2025
1 parent 201077d commit 741b6be
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ clap = { version = "=4.4", features = ["cargo"] } # We force 4.4 so we don't hav
serde = "1"
serde_derive = "1"
serde_json = "1"
openssl = "0"
base64 = "0"
openssl = "0.10"
base64 = "0.21"
acme-lib = { git = 'https://github.com/DBCDK/acme-lib', branch = 'dbc-fork' }
regex = "1"
lazy_static = "1"
walkdir = "2"
trust-dns-resolver = { version = "0", features = ["tokio-runtime"] }
env_logger = "0"
env_logger = "0.11"
prometheus_exporter_base = { version = "=1.4.0", features = ["hyper_server"] }
tokio = { version = "1", features = [ "full" ] }
async-trait = { version = "0" }
async-trait = { version = "0.1" }
dbc-rust-modules = { git = "https://github.com/dbcdk/rust-modules", branch = "main" }
vaultrs = "0"
vaultrs-login = "0"
vaultrs = "0.7"
vaultrs-login = "0.2"
url = "2"
chrono = "0"
num-traits = "0"
chrono = "0.4"
num-traits = "0.2"
reqwest = { version = "0", features = ["blocking", "json"] }

[profile.release]
Expand Down

0 comments on commit 741b6be

Please sign in to comment.