Skip to content

Commit 02c2a57

Browse files
committed
Update dependencies
1 parent 147b4b6 commit 02c2a57

File tree

24 files changed

+1208
-128
lines changed

24 files changed

+1208
-128
lines changed

Cargo.lock

Lines changed: 125 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-dylint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository = "https://github.com/trailofbits/dylint"
1010
[dependencies]
1111
anyhow = "1.0"
1212
clap = { version = "4.1", features = ["cargo", "derive", "wrap_help"] }
13-
env_logger = "0.9"
13+
env_logger = "0.10"
1414

1515
dylint = { version = "=2.1.2", path = "../dylint", features = ["package_options"] }
1616
dylint_internal = { version = "=2.1.2", path = "../internal" }

dylint-link/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ repository = "https://github.com/trailofbits/dylint"
99

1010
[dependencies]
1111
anyhow = "1.0"
12-
env_logger = "0.9"
12+
env_logger = "0.10"
1313
if_chain = "1.0"
14-
toml_edit = "0.14"
14+
toml_edit = "0.17"
1515

1616
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["cargo"] }
1717

dylint/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/trailofbits/dylint"
1111
ansi_term = "0.12"
1212
anyhow = "1.0"
1313
atty = "0.2"
14-
cargo = { version = "0.65", optional = true }
14+
cargo = { version = "0.67", optional = true }
1515
cargo-platform = { version = "0.1", optional = true }
1616
cargo-util = { version = "0.2", optional = true }
1717
cargo_metadata = "0.15"
@@ -34,7 +34,7 @@ dylint_internal = { version = "=2.1.2", path = "../internal", features = ["git",
3434
dylint_internal = { version = "=2.1.2", path = "../internal", features = ["cargo"] }
3535

3636
[dev-dependencies]
37-
env_logger = "0.9"
37+
env_logger = "0.10"
3838
lazy_static = "1.4"
3939
test-log = "0.2"
4040

dylint/src/toml.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// smoelius: This file is essentially the dependency specific portions of
2-
// https://github.com/rust-lang/cargo/blob/master/src/cargo/util/toml/mod.rs (version 0.65.0) with
2+
// https://github.com/rust-lang/cargo/blob/master/src/cargo/util/toml/mod.rs (version 0.675.1) with
33
// adjustments to make some things public.
44

55
#![allow(unused_imports)]
@@ -121,7 +121,7 @@ pub struct DetailedTomlDependency<P: Clone = String> {
121121
package: Option<String>,
122122
public: Option<bool>,
123123

124-
/// One ore more of 'bin', 'cdylib', 'staticlib', 'bin:<name>'.
124+
/// One or more of `bin`, `cdylib`, `staticlib`, `bin:<name>`.
125125
artifact: Option<StringOrVec>,
126126
/// If set, the artifact should also be a dependency
127127
lib: Option<bool>,

examples/general/await_holding_span_guard/Cargo.lock

Lines changed: 66 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/general/crate_wide_allow/Cargo.lock

Lines changed: 66 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/general/env_cargo_path/Cargo.lock

Lines changed: 66 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)