Skip to content

Commit

Permalink
release: v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OtaK committed Jan 10, 2024
1 parent 02992d2 commit 064d531
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 1,024 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions acme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-acme"
description = "ACME types"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -14,9 +14,9 @@ crate-type = ["cdylib", "rlib"]
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
rusty-jwt-tools = { version = "0.7.1", path = "../jwt" }
rusty-jwt-tools = { version = "0.8.0", path = "../jwt" }
jwt-simple = { workspace = true }
rusty-x509-check = { version = "0.6.1", path = "../x509-check" }
rusty-x509-check = { version = "0.8.0", path = "../x509-check" }
base64 = "0.21"
url = { version = "2.5", features = ["serde"] }
time = { version = "0.3", features = ["serde", "serde-well-known", "wasm-bindgen"] }
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "rusty-jwt-cli"
description = "Cli to handle JWTs"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
publish = false

[dependencies]
rusty-jwt-tools = { version = "0.7.1", path = "../jwt" }
rusty-jwt-tools = { version = "0.8.0", path = "../jwt" }
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
jwt-simple = { workspace = true }
Expand Down
16 changes: 8 additions & 8 deletions e2e-identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wire-e2e-identity"
description = "Public API for Wire end to end identity"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -14,8 +14,8 @@ crate-type = ["cdylib", "rlib"]
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
rusty-acme = { version = "0.7.1", path = "../acme" }
rusty-jwt-tools = { version = "0.7.1", path = "../jwt" }
rusty-acme = { version = "0.8.0", path = "../acme" }
rusty-jwt-tools = { version = "0.8.0", path = "../jwt" }
jwt-simple = { workspace = true }
derive_more = { version = "0.99", features = ["deref", "from", "into"] }
url = "2.5"
Expand All @@ -34,8 +34,8 @@ version = "=0.9.2"
optional = true

[dev-dependencies]
wire-e2e-identity = { version = "0.7.1", path = ".", features = ["identity-builder"] }
rusty-jwt-tools = { version = "0.7.1", path = "../jwt", features = ["test-utils"] }
wire-e2e-identity = { version = "0.8.0", path = ".", features = ["identity-builder"] }
rusty-jwt-tools = { version = "0.8.0", path = "../jwt", features = ["test-utils"] }
rand = "0.8"
base64 = "0.21.0"
url = "2.5"
Expand All @@ -44,7 +44,7 @@ uuid = "1.6"
wasm-bindgen-test = "0.3"
hex = "0.4"
webbrowser = "0.8"
rusty-jwt-cli = { version = "0.7.1", path = "../cli" }
rusty-jwt-cli = { version = "0.8.0", path = "../cli" }

openidconnect = "3.0.0-alpha.1"
html_parser = "0.6"
Expand All @@ -56,7 +56,7 @@ portpicker = "0.1"
pem = "3.0"

[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
rusty-acme = { version = "0.7.1", path = "../acme" }
rusty-acme = { version = "0.8.0", path = "../acme" }
reqwest = { version = "0.11", features = ["json"], default_features = false }
tokio = { version = "1.5", features = ["macros"], default_features = false }
hyper = { version = "0.14", features = ["server"], default_features = false }
Expand All @@ -66,7 +66,7 @@ oauth2 = "4.3"
http = "0.2"

[target.'cfg(target_family = "wasm")'.dev-dependencies]
rusty-acme = { version = "0.7.1", path = "../acme" }
rusty-acme = { version = "0.8.0", path = "../acme" }

[features]
default = []
Expand Down
Loading

0 comments on commit 064d531

Please sign in to comment.