Skip to content

Commit

Permalink
Dependency updates (#394)
Browse files Browse the repository at this point in the history
* Dependency updates

* Fixed refresh kind constructor

* Fixed refresh kind constructor in doctest
  • Loading branch information
CraZySacX authored Jan 8, 2025
1 parent 38524b0 commit 37a0730
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 42 deletions.
8 changes: 4 additions & 4 deletions test_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "test_util"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "0.1.3"
version = "0.1.4"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand All @@ -29,8 +29,8 @@ unstable = []
repo = ["gix", "rand"]

[dependencies]
anyhow = { version = "1.0.93" }
gix = { version = "0.68.0", default-features = false, features = [
anyhow = { version = "1.0.95" }
gix = { version = "0.69.1", default-features = false, features = [
"revision",
"worktree-mutation",
"blocking-network-client",
Expand All @@ -43,4 +43,4 @@ temp-env = "0.3.6"
serial_test = "3.2.0"

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"
10 changes: 5 additions & 5 deletions vergen-git2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "vergen-git2"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "1.0.2"
version = "1.0.3"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand All @@ -35,17 +35,17 @@ si = ["vergen/si"]
[dependencies]
anyhow = "1.0.93"
derive_builder = "0.20.2"
git2-rs = { version = "0.19.0", package = "git2", default-features = false }
git2-rs = { version = "0.20.0", package = "git2", default-features = false }
time = { version = "0.3.36", features = [
"formatting",
"local-offset",
"parsing",
] }
vergen = { version = "9.0.2", path = "../vergen", default-features = false }
vergen-lib = { version = "0.1.5", path = "../vergen-lib", features = ["git"] }
vergen = { version = "9.0.3", path = "../vergen", default-features = false }
vergen-lib = { version = "0.1.6", path = "../vergen-lib", features = ["git"] }

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"

[dev-dependencies]
lazy_static = "1.5.0"
Expand Down
12 changes: 6 additions & 6 deletions vergen-gitcl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "vergen-gitcl"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "1.0.2"
version = "1.0.3"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand All @@ -33,18 +33,18 @@ unstable = ["vergen/unstable", "vergen-lib/unstable"]
si = ["vergen/si"]

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.95"
derive_builder = "0.20.2"
time = { version = "0.3.36", features = [
time = { version = "0.3.37", features = [
"formatting",
"local-offset",
"parsing",
] }
vergen = { version = "9.0.2", path = "../vergen", default-features = false }
vergen-lib = { version = "0.1.5", path = "../vergen-lib", features = ["git"] }
vergen = { version = "9.0.3", path = "../vergen", default-features = false }
vergen-lib = { version = "0.1.6", path = "../vergen-lib", features = ["git"] }

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"

[dev-dependencies]
lazy_static = "1.5.0"
Expand Down
12 changes: 6 additions & 6 deletions vergen-gix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "vergen-gix"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "1.0.3"
version = "1.0.4"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand All @@ -38,9 +38,9 @@ unstable = ["vergen/unstable", "vergen-lib/unstable"]
si = ["vergen/si"]

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.95"
derive_builder = "0.20.2"
gix = { version = "0.68.0", default-features = false, features = [
gix = { version = "0.69.1", default-features = false, features = [
"revision",
"interrupt",
] }
Expand All @@ -49,11 +49,11 @@ time = { version = "0.3.36", features = [
"local-offset",
"parsing",
] }
vergen = { version = "9.0.2", path = "../vergen", default-features = false }
vergen-lib = { version = "0.1.5", path = "../vergen-lib", features = ["git"] }
vergen = { version = "9.0.3", path = "../vergen", default-features = false }
vergen-lib = { version = "0.1.6", path = "../vergen-lib", features = ["git"] }

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"

[dev-dependencies]
lazy_static = "1.5.0"
Expand Down
6 changes: 3 additions & 3 deletions vergen-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "vergen-lib"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "0.1.5"
version = "0.1.6"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand Down Expand Up @@ -39,11 +39,11 @@ unstable = []
si = []

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.95"
derive_builder = "0.20.2"

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"

[dev-dependencies]
serial_test = "3.2.0"
Expand Down
20 changes: 10 additions & 10 deletions vergen-pretty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "vergen-pretty"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "0.3.6"
version = "0.3.7"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand Down Expand Up @@ -39,22 +39,22 @@ __vergen_test = ["vergen-gix", "vergen-gix/unstable"]
__vergen_empty_test = ["vergen-gix", "vergen-gix/unstable"]

[dependencies]
anyhow = "1.0.93"
console = { version = "0.15.8", optional = true }
anyhow = "1.0.95"
console = { version = "0.15.10", optional = true }
convert_case = "0.6.0"
derive_builder = "0.20.2"
lazy_static = { version = "1.5.0", optional = true }
rand = { version = "0.8.5", optional = true }
serde = { version = "1.0.215", features = ["derive"], optional = true }
tracing = { version = "0.1.40", features = [
serde = { version = "1.0.217", features = ["derive"], optional = true }
tracing = { version = "0.1.41", features = [
"max_level_trace",
"release_max_level_trace",
], optional = true }

[build-dependencies]
anyhow = "1.0.93"
rustversion = "1.0.18"
vergen-gix = { version = "1.0.3", path = "../vergen-gix", features = [
anyhow = "1.0.95"
rustversion = "1.0.19"
vergen-gix = { version = "1.0.4", path = "../vergen-gix", features = [
"build",
"cargo",
"rustc",
Expand All @@ -64,8 +64,8 @@ vergen-gix = { version = "1.0.3", path = "../vergen-gix", features = [
[dev-dependencies]
lazy_static = "1.5.0"
regex = "1.11.1"
serde_json = "1.0.133"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
serde_json = "1.0.135"
tracing-subscriber = { version = "0.3.19", features = ["fmt"] }

[package.metadata.docs.rs]
features = ["color", "header", "serde", "trace"]
Expand Down
12 changes: 6 additions & 6 deletions vergen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rust-version = "1.81.0"
name = "vergen"
readme = "README.md"
repository = "https://github.com/rustyhorde/vergen"
version = "9.0.2"
version = "9.0.3"

[package.metadata.cargo-matrix]
[[package.metadata.cargo-matrix.channel]]
Expand All @@ -33,21 +33,21 @@ unstable = ["vergen-lib/unstable"]
emit_and_set = ["vergen-lib/emit_and_set"]

[dependencies]
anyhow = "1.0.93"
cargo_metadata = { version = "0.19.0", optional = true }
anyhow = "1.0.95"
cargo_metadata = { version = "0.19.1", optional = true }
derive_builder = "0.20.2"
regex = { version = "1.11.1", optional = true }
rustc_version = { version = "0.4.1", optional = true }
sysinfo = { version = "0.32.1", optional = true }
time = { version = "0.3.36", features = [
sysinfo = { version = "0.33.1", optional = true }
time = { version = "0.3.37", features = [
"formatting",
"local-offset",
"parsing",
], optional = true }
vergen-lib = { version = "0.1.5", path = "../vergen-lib" }

[build-dependencies]
rustversion = "1.0.18"
rustversion = "1.0.19"

[dev-dependencies]
lazy_static = "1.5.0"
Expand Down
4 changes: 2 additions & 2 deletions vergen/src/feature/si.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ use vergen_lib::{
/// # use vergen::SysinfoBuilder;
/// #
/// # pub fn main() -> Result<()> {
/// let refresh_kind = RefreshKind::new();
/// let refresh_kind = RefreshKind::nothing();
/// let cpu_refresh_kind = CpuRefreshKind::everything()
/// .without_cpu_usage()
/// .without_frequency();
Expand Down Expand Up @@ -743,7 +743,7 @@ mod test {
#[test]
#[serial_test::serial]
fn sysinfo_refresh_kind() -> Result<()> {
let refresh_kind = RefreshKind::new();
let refresh_kind = RefreshKind::nothing();
let cpu_refresh_kind = CpuRefreshKind::everything()
.without_cpu_usage()
.without_frequency();
Expand Down

0 comments on commit 37a0730

Please sign in to comment.