Skip to content

Commit

Permalink
build: 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beltram committed Mar 17, 2023
1 parent 9e272eb commit d060a2a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 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.3.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -11,7 +11,7 @@ publish = false
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
rusty-jwt-tools = { version = "0.3.0", path = "../jwt" }
rusty-jwt-tools = { version = "0.3.1", path = "../jwt" }
jwt-simple = "0.11.3"
base64 = "0.21"
url = { version = "2.3", features = ["serde"] }
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.3.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
publish = false

[dependencies]
rusty-jwt-tools = { version = "0.3.0", path = "../jwt" }
rusty-jwt-tools = { version = "0.3.1", path = "../jwt" }
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"
jwt-simple = "0.11.3"
Expand Down
10 changes: 5 additions & 5 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.3.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -11,8 +11,8 @@ publish = false
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
rusty-acme = { version = "0.3.0", path = "../acme" }
rusty-jwt-tools = { version = "0.3.0", path = "../jwt" }
rusty-acme = { version = "0.3.1", path = "../acme" }
rusty-jwt-tools = { version = "0.3.1", path = "../jwt" }
jwt-simple = "0.11.3"
derive_more = { version = "0.99", features = ["deref", "from", "into"] }
url = "2.3"
Expand All @@ -39,7 +39,7 @@ rcgen = { version = "=0.9.2", features = ["x509-parser", "pem"] }
pem = "1.1"

[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
rusty-acme = { version = "0.3.0", path = "../acme", features = ["docker"] }
rusty-acme = { version = "0.3.1", path = "../acme", features = ["docker"] }
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 @@ -49,4 +49,4 @@ oauth2 = "4.3"
http = "0.2"

[target.'cfg(target_family = "wasm")'.dev-dependencies]
rusty-acme = { version = "0.3.0", path = "../acme" }
rusty-acme = { version = "0.3.1", path = "../acme" }
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-jwt-tools-ffi"
description = "Exposing utilities to handle JWTs in Haskell"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -12,5 +12,5 @@ name = "rusty_jwt_tools_ffi"
crate-type = ["cdylib", "staticlib"]

[dependencies]
rusty-jwt-tools = { version = "0.3.0", path = "../jwt" }
rusty-jwt-tools = { version = "0.3.1", path = "../jwt" }
uuid = "1.3"
2 changes: 1 addition & 1 deletion jwt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-jwt-tools"
description = "Utilities to handle JWTs"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand Down

0 comments on commit d060a2a

Please sign in to comment.