Skip to content

Commit acb8361

Browse files
authored
Update dependencies & add RUSTSEC-2020-0071 to audit.toml (iqlusioninc#570)
* Cargo.lock: update dependencies & add RUSTSEC-2020-0071 to audit.toml
1 parent 3e81346 commit acb8361

File tree

4 files changed

+27
-20
lines changed

4 files changed

+27
-20
lines changed

.cargo/audit.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[advisories]
2+
ignore = [
3+
"RUSTSEC-2020-0071", # time
4+
"RUSTSEC-2020-0159", # chrono
5+
] # advisory IDs to ignore e.g. ["RUSTSEC-2019-0001", ...]

Cargo.lock

+19-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = ["abscissa", "cli", "application", "framework", "service"]
1717

1818
[dependencies]
1919
abscissa_core = { version = "=0.6.0-pre.2", path = "../core" }
20-
clap = "3.0.0-beta.4"
20+
clap = "=3.0.0-beta.4"
2121
handlebars = "4"
2222
ident_case = "1"
2323
serde = { version = "1", features = ["serde_derive"] }

core/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ canonical-path = "2"
2323
chrono = { version = "0.4", optional = true, features = ["serde"] }
2424
color-eyre = { version = "0.5", optional = true, default-features = false }
2525
fs-err = "2"
26-
clap = { version = "3.0.0-beta.4", optional = true }
26+
clap = { version = "=3.0.0-beta.4", optional = true }
27+
clap_derive = { version = "=3.0.0-beta.4", optional = true }
2728
once_cell = "1.4"
2829
regex = { version = "1", optional = true }
2930
secrecy = { version = "0.8", optional = true, features = ["serde"] }

0 commit comments

Comments
 (0)