Skip to content

Commit 4b7b782

Browse files
authored
zeroize: move zeroize_derive to toplevel (#1074)
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.
1 parent 6b341bb commit 4b7b782

File tree

8 files changed

+2
-2
lines changed

8 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
"opaque-debug",
1515
"wycheproof2blb",
1616
"zeroize",
17-
"zeroize/derive"
17+
"zeroize_derive"
1818
]
1919

2020
[profile.dev]

zeroize/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version = "1.60"
1919

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

2424
[features]
2525
default = ["alloc"]
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 commit comments

Comments
 (0)