Skip to content

Commit

Permalink
core: bump secrecy to v0.10 (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion authored Oct 10, 2024
1 parent 062e090 commit 248c4f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ arc-swap = { version = "1", optional = true }
color-eyre = { version = "0.6", optional = true, default-features = false }
clap = { version = "4", optional = true, features = ["derive"] }
regex = { version = "1", optional = true }
secrecy = { version = "0.8", optional = true, features = ["serde"] }
secrecy = { version = "0.10", optional = true, features = ["serde"] }
semver = { version = "1", optional = true }
serde = { version = "1", optional = true, features = ["serde_derive"] }
termcolor = { version = "1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ pub use fs_err as fs;
#[cfg(feature = "secrets")]
pub use secrecy as secret;
#[cfg(feature = "secrets")]
pub use secrecy::Secret;
pub use secrecy::{SecretBox, SecretSlice, SecretString};
#[cfg(feature = "application")]
pub use semver::Version;

0 comments on commit 248c4f9

Please sign in to comment.