-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robin Doer
committed
Sep 27, 2024
1 parent
c348c8f
commit 2f746e3
Showing
11 changed files
with
53 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-archive" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "A tar like archive on top of the nuts-container" | ||
|
@@ -38,14 +38,14 @@ readme = "README.md" | |
[dependencies] | ||
chrono = { version = "0.4.38" } | ||
log = "0.4.21" | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } | ||
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.1", features = [ | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" } | ||
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.2", features = [ | ||
"derive", | ||
] } | ||
nuts-container = { path = "../nuts-container", version = "=0.7.1" } | ||
nuts-container = { path = "../nuts-container", version = "=0.7.2" } | ||
thiserror = "1.0.61" | ||
|
||
[dev-dependencies] | ||
nuts-directory = { path = "../nuts-directory", version = "=0.7.1" } | ||
nuts-memory = { path = "../nuts-memory", version = "=0.7.1" } | ||
nuts-directory = { path = "../nuts-directory", version = "=0.7.2" } | ||
nuts-memory = { path = "../nuts-memory", version = "=0.7.2" } | ||
tempfile = "3.10.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-backend" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "A secure storage library" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-bytes-derive" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "Serialization into a binary data format" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-bytes" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "Serialization into a binary data format" | ||
|
@@ -39,7 +39,7 @@ readme = "README.md" | |
derive = ["dep:nuts-bytes-derive"] | ||
|
||
[dependencies] | ||
nuts-bytes-derive = { version = "=0.7.1", path = "../nuts-bytes-derive", optional = true } | ||
nuts-bytes-derive = { version = "=0.7.2", path = "../nuts-bytes-derive", optional = true } | ||
thiserror = "1.0.61" | ||
|
||
[package.metadata.docs.rs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-container" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "A secure storage library" | ||
|
@@ -41,10 +41,10 @@ debug-plain-keys = [] | |
|
||
[dependencies] | ||
log = "0.4.21" | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" } | ||
openssl = { version = "0.10.66", features = ["vendored"] } | ||
thiserror = "1.0.61" | ||
|
||
[dev-dependencies] | ||
nuts-memory = { path = "../nuts-memory", version = "=0.7.1" } | ||
nuts-directory = { path = "../nuts-directory", version = "=0.7.1" } | ||
nuts-memory = { path = "../nuts-memory", version = "=0.7.2" } | ||
nuts-directory = { path = "../nuts-directory", version = "=0.7.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-directory" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "A backend implementation for nuts" | ||
|
@@ -37,8 +37,8 @@ readme = "README.md" | |
[dependencies] | ||
getrandom = { version = "0.2.15", features = ["std"] } | ||
log = "0.4.21" | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } | ||
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.1", optional = true } | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" } | ||
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.2", optional = true } | ||
|
||
[features] | ||
plugin = ["dep:nuts-tool-api"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-memory" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "A backend implementation for nuts" | ||
|
@@ -36,8 +36,8 @@ readme = "README.md" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } | ||
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.1", features = [ | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" } | ||
nuts-bytes = { path = "../nuts-bytes", version = "=0.7.2", features = [ | ||
"derive", | ||
] } | ||
thiserror = "1.0.61" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-tool-api" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
authors = ["Robin Doer <[email protected]>"] | ||
description = "Code that helps you to implement a nuts tool plugin" | ||
|
@@ -43,7 +43,7 @@ log = "0.4.21" | |
|
||
clap = { version = "4.5.4", features = ["cargo", "derive"], optional = true } | ||
env_logger = { version = "0.10.2", optional = true } | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.1", optional = true } | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.2", optional = true } | ||
thiserror = "1.0.61" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
[package] | ||
name = "nuts-tool" | ||
version = "0.7.1" | ||
version = "0.7.2" | ||
edition = "2018" | ||
rust-version = "1.66" | ||
authors = ["Robin Doer <[email protected]>"] | ||
|
@@ -42,10 +42,10 @@ clap = { version = "4.5.4", features = ["cargo", "color", "derive", "env"] } | |
colored = "2.1.0" | ||
env_logger = "0.10.2" | ||
log = "0.4.21" | ||
nuts-archive = { path = "../nuts-archive", version = "=0.7.1" } | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.1" } | ||
nuts-container = { path = "../nuts-container", version = "=0.7.1" } | ||
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.1", default-features = false, features = [ | ||
nuts-archive = { path = "../nuts-archive", version = "=0.7.2" } | ||
nuts-backend = { path = "../nuts-backend", version = "=0.7.2" } | ||
nuts-container = { path = "../nuts-container", version = "=0.7.2" } | ||
nuts-tool-api = { path = "../nuts-tool-api", version = "=0.7.2", default-features = false, features = [ | ||
"tool", | ||
] } | ||
rpassword = "7.3.1" | ||
|