Skip to content

Commit

Permalink
fix: revert version changes
Browse files Browse the repository at this point in the history
  • Loading branch information
coroiu committed Jun 17, 2024
1 parent bda454c commit fe23753
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion passkey-authenticator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "passkey-authenticator"
version = "0.2.1"
version = "0.2.0"
description = "A webauthn authenticator supporting passkeys."
include = ["src/", "../LICENSE-APACHE", "../LICENSE-MIT"]
readme = "README.md"
Expand Down
7 changes: 5 additions & 2 deletions passkey-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "passkey-client"
version = "0.2.1"
version = "0.2.0"
description = "Webauthn client in Rust."
include = ["src/", "../LICENSE-APACHE", "../LICENSE-MIT"]
readme = "README.md"
Expand Down Expand Up @@ -30,5 +30,8 @@ coset = "0.3"

[dev-dependencies]
coset = "0.3"
passkey-authenticator = { path = "../passkey-authenticator", features = ["tokio", "testable"] }
passkey-authenticator = { path = "../passkey-authenticator", features = [
"tokio",
"testable",
] }
tokio = { version = "1", features = ["macros", "rt"] }
6 changes: 4 additions & 2 deletions passkey/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "passkey"
version = "0.2.1"
version = "0.2.0"
description = "A one stop library to implement a passkey client and authenticator"
include = ["src/", "../LICENSE-APACHE", "../LICENSE-MIT"]
readme = "../README.md"
Expand All @@ -17,7 +17,9 @@ workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package.metadata.cargo-udeps.ignore]
development = ["tokio-test"] # Only used for async doctests. Cargo udeps can't check.:
development = [
"tokio-test",
] # Only used for async doctests. Cargo udeps can't check.:

[dependencies]
passkey-authenticator = { path = "../passkey-authenticator", version = "0.2" }
Expand Down

0 comments on commit fe23753

Please sign in to comment.