Skip to content

Commit

Permalink
sync versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Jul 1, 2024
1 parent 0ab6835 commit 4af7aef
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ members = [".", "crates/*"]
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.2.0"
authors = ["Doug Anderson"]
description = "Delanocreds, Delegatable Anonymous Credentials in pure Rust"
repository = "https://github.com/DougAnderson444/delanocreds"

[workspace.dependencies]
delanocreds = { path = "crates/delanocreds" }
delano-keys = { path = "crates/delano-keys" }
delano-wit-ui = { path = "crates/delano-wit-ui" }
delano-events = { path = "crates/delano-events" }
delanocreds = { version = "0.2.0", path = "crates/delanocreds" }
delano-keys = { version = "0.2.0", path = "crates/delano-keys" }
delano-wit-ui = { version = "0.2.0", path = "crates/delano-wit-ui" }
delano-events = { version = "0.2.0", path = "crates/delano-events" }
bls12_381_plus = { version = "0.8.16", features = ["expose-fields", "alloc"] }

secrecy = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion crates/delano-events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "delano-events"
version = "0.1.0"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/delano-keys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "delano-keys"
version = "0.1.1"
version.workspace = true
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/delano-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "delano-wallet"
version = "0.1.0"
version.workspace = true
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/delano-wit-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "delano-wit-ui"
version = "0.1.0"
version.workspace = true
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/delanocreds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2021"
license = "MIT"
name = "delanocreds"
version = "0.2.0"
version.workspace = true

[lib]
crate-type = ["cdylib", "lib"]
Expand Down

0 comments on commit 4af7aef

Please sign in to comment.