Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [

[workspace.package]
documentation = "https://docs.rs/vitaminc"
version = "0.1.0-pre4.1"
version = "0.1.0-pre4.2"
repository = "https://github.com/cipherstash/vitaminc"
authors = [
"Dan Draper <dan@cipherstash.com>",
Expand Down
5 changes: 5 additions & 0 deletions packages/aead/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [Unreleased]


### Documentation

- update doctests to show vitaminc::* import paths


### Fixes

- update codebase for rand 0.9 breaking changes
Expand Down
4 changes: 2 additions & 2 deletions packages/aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.1", path = "../random" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.2", path = "../random" }

bytes = { version = "^1", features = ["serde"] }
serde = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions packages/async-traits/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@



### Miscellaneous

- set workspace-wide MSRV to 1.75.0
Expand Down
4 changes: 2 additions & 2 deletions packages/async-traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ categories.workspace = true
rust-version.workspace = true

[dependencies]
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-traits = { version = "0.1.0-pre4.1", path = "../traits" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
vitaminc-traits = { version = "0.1.0-pre4.2", path = "../traits" }
5 changes: 5 additions & 0 deletions packages/encrypt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


### Documentation

- update doctests to show vitaminc::* import paths


### Miscellaneous

- bump aws-lc-rs from 1.14.1 to 1.15.0
Expand Down
8 changes: 4 additions & 4 deletions packages/encrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ categories.workspace = true

[dependencies]
aws-lc-rs = "1.15.4"
vitaminc-aead = { version = "0.1.0-pre4.1", path = "../aead" }
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.1", path = "../random" }
vitaminc-aead = { version = "0.1.0-pre4.2", path = "../aead" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.2", path = "../random" }

zeroize = { workspace = true }

[dev-dependencies]
vitaminc-protected = { path = "../protected", version = "0.1.0-pre4.1", features = ["arbitrary"] }
vitaminc-protected = { path = "../protected", version = "0.1.0-pre4.2", features = ["arbitrary"] }
quickcheck = "1.1.0"
quickcheck_macros = "1.2.0"
5 changes: 5 additions & 0 deletions packages/kms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


### Fixes

- update deprecated BehaviorVersion to v2026_01_12


### Miscellaneous

- bump aws-config from 1.8.6 to 1.8.7
Expand Down
6 changes: 3 additions & 3 deletions packages/kms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
vitaminc-async-traits = { version = "0.1.0-pre4.1", path = "../async-traits" }
vitaminc-traits = { version = "0.1.0-pre4.1", path = "../traits" }
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-async-traits = { version = "0.1.0-pre4.2", path = "../async-traits" }
vitaminc-traits = { version = "0.1.0-pre4.2", path = "../traits" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
aws-sdk-kms = "1.88.0"
aws-config = "1.8.7"

Expand Down
1 change: 1 addition & 0 deletions packages/password/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@



### Fixes

- update codebase for rand 0.9 breaking changes
Expand Down
4 changes: 2 additions & 2 deletions packages/password/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ categories.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
vitaminc-random = { version = "0.1.0-pre4.1", path = "../random" }
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.2", path = "../random" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
5 changes: 5 additions & 0 deletions packages/permutation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


### Documentation

- update doctests to show vitaminc::* import paths


### Fixes

- update codebase for rand 0.9 breaking changes
Expand Down
4 changes: 2 additions & 2 deletions packages/permutation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected", features = ["bitvec"] }
vitaminc-random = { version = "0.1.0-pre4.1", path = "../random" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected", features = ["bitvec"] }
vitaminc-random = { version = "0.1.0-pre4.2", path = "../random" }

bitvec = { workspace = true }
rand = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/protected-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


### Fixes

- remove circular dev-dependency between vitaminc-protected and vitaminc


### Fixes

- suppress unused_results lint in OpaqueDebug generated code
Expand Down
5 changes: 5 additions & 0 deletions packages/protected/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


### Documentation

- update doctests to show vitaminc::* import paths


### Fixes

- replace bincode with rmp-serde in tests
Expand Down
2 changes: 1 addition & 1 deletion packages/protected/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ digest = "0.10.7"
subtle = "2.6.1"

quickcheck = { version = "1.1.0", optional = true }
vitaminc-protected-derive = { path = "../protected-derive", version = "0.1.0-pre4.1" }
vitaminc-protected-derive = { path = "../protected-derive", version = "0.1.0-pre4.2" }

[dev-dependencies]
rmp-serde = "1.3.1"
Expand Down
1 change: 1 addition & 0 deletions packages/random-derives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@



### Miscellaneous

- release v0.1.0-pre4.1
Expand Down
5 changes: 5 additions & 0 deletions packages/random/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [Unreleased]


### Documentation

- update doctests to show vitaminc::* import paths


### Fixes

- update codebase for rand 0.9 breaking changes
Expand Down
4 changes: 2 additions & 2 deletions packages/random/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ rand = { workspace = true }
thiserror = { workspace = true }
zeroize = { workspace = true }

vitaminc-random-derives = { version = "0.1.0-pre4.1", path = "../random-derives" }
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-random-derives = { version = "0.1.0-pre4.2", path = "../random-derives" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
1 change: 1 addition & 0 deletions packages/traits/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@



### Miscellaneous

- set workspace-wide MSRV to 1.75.0
Expand Down
4 changes: 2 additions & 2 deletions packages/traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ rust-version.workspace = true

[dependencies]
rmp-serde = "1.3.1"
vitaminc-protected = { version = "0.1.0-pre4.1", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.1", path = "../random" }
vitaminc-protected = { version = "0.1.0-pre4.2", path = "../protected" }
vitaminc-random = { version = "0.1.0-pre4.2", path = "../random" }

serde = { workspace = true }
thiserror = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/vitaminc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


### Refactoring

- normalize vitaminc re-exports to module aliases


### Fixes

- suppress unused_results lint in OpaqueDebug generated code
Expand Down
16 changes: 8 additions & 8 deletions packages/vitaminc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ categories.workspace = true
all-features = true

[dependencies]
vitaminc-kms = { path = "../kms", version = "0.1.0-pre4.1", optional = true }
vitaminc-permutation = { path = "../permutation", version = "0.1.0-pre4.1", optional = true }
vitaminc-protected = { path = "../protected", version = "0.1.0-pre4.1", optional = true }
vitaminc-random = { path = "../random", version = "0.1.0-pre4.1", optional = true }
vitaminc-traits = { path = "../traits", version = "0.1.0-pre4.1", optional = true }
vitaminc-async-traits = { path = "../async-traits", version = "0.1.0-pre4.1", optional = true }
vitaminc-encrypt = { path = "../encrypt", version = "0.1.0-pre4.1", optional = true }
vitaminc-aead = { path = "../aead", version = "0.1.0-pre4.1", optional = true }
vitaminc-kms = { path = "../kms", version = "0.1.0-pre4.2", optional = true }
vitaminc-permutation = { path = "../permutation", version = "0.1.0-pre4.2", optional = true }
vitaminc-protected = { path = "../protected", version = "0.1.0-pre4.2", optional = true }
vitaminc-random = { path = "../random", version = "0.1.0-pre4.2", optional = true }
vitaminc-traits = { path = "../traits", version = "0.1.0-pre4.2", optional = true }
vitaminc-async-traits = { path = "../async-traits", version = "0.1.0-pre4.2", optional = true }
vitaminc-encrypt = { path = "../encrypt", version = "0.1.0-pre4.2", optional = true }
vitaminc-aead = { path = "../aead", version = "0.1.0-pre4.2", optional = true }

[features]
protected = ["dep:vitaminc-protected"]
Expand Down