Skip to content

Commit

Permalink
zeroize: move zeroize_derive to toplevel
Browse files Browse the repository at this point in the history
The current directory structure unintentionally packages a copy of
`zeroize_derive` with every copy of `zeroize`.

This commit moves it to the toplevel while making no other changes. This
preserves the commit history.
  • Loading branch information
tarcieri committed May 25, 2024
1 parent 6b341bb commit 570bf77
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
"opaque-debug",
"wycheproof2blb",
"zeroize",
"zeroize/derive"
"zeroize_derive"
]

[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion zeroize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rust-version = "1.60"

[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
zeroize_derive = { version = "1.3", path = "derive", optional = true }
zeroize_derive = { version = "1.3", path = "../zeroize_derive", optional = true }

[features]
default = ["alloc"]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 570bf77

Please sign in to comment.