Skip to content

Commit 26f5e3d

Browse files
committed
build: update drawbridge-client to 0.2.4
Signed-off-by: Roman Volosatovs <[email protected]>
1 parent 6c142db commit 26f5e3d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ in
4343
cargo2nixVersion = "0.11.0";
4444
workspace = {
4545
drawbridge-byte = rustPackages.unknown.drawbridge-byte."0.2.0";
46-
drawbridge-client = rustPackages.unknown.drawbridge-client."0.2.3";
46+
drawbridge-client = rustPackages.unknown.drawbridge-client."0.2.4";
4747
drawbridge-jose = rustPackages.unknown.drawbridge-jose."0.2.0";
4848
drawbridge-type = rustPackages.unknown.drawbridge-type."0.2.2";
4949
drawbridge-server = rustPackages.unknown.drawbridge-server."0.2.2";
@@ -720,7 +720,7 @@ in
720720
clap = rustPackages."registry+https://github.com/rust-lang/crates.io-index".clap."3.2.22" { inherit profileName; };
721721
confargs = rustPackages."registry+https://github.com/rust-lang/crates.io-index".confargs."0.1.3" { inherit profileName; };
722722
drawbridge_byte = rustPackages."unknown".drawbridge-byte."0.2.0" { inherit profileName; };
723-
drawbridge_client = rustPackages."unknown".drawbridge-client."0.2.3" { inherit profileName; };
723+
drawbridge_client = rustPackages."unknown".drawbridge-client."0.2.4" { inherit profileName; };
724724
drawbridge_jose = rustPackages."unknown".drawbridge-jose."0.2.0" { inherit profileName; };
725725
drawbridge_server = rustPackages."unknown".drawbridge-server."0.2.2" { inherit profileName; };
726726
drawbridge_type = rustPackages."unknown".drawbridge-type."0.2.2" { inherit profileName; };
@@ -731,7 +731,7 @@ in
731731
devDependencies = {
732732
async_h1 = rustPackages."registry+https://github.com/rust-lang/crates.io-index".async-h1."2.3.3" { inherit profileName; };
733733
async_std = rustPackages."registry+https://github.com/rust-lang/crates.io-index".async-std."1.12.0" { inherit profileName; };
734-
drawbridge_client = rustPackages."unknown".drawbridge-client."0.2.3" { inherit profileName; };
734+
drawbridge_client = rustPackages."unknown".drawbridge-client."0.2.4" { inherit profileName; };
735735
http_types = rustPackages."registry+https://github.com/rust-lang/crates.io-index".http-types."2.12.0" { inherit profileName; };
736736
openidconnect = rustPackages."registry+https://github.com/rust-lang/crates.io-index".openidconnect."2.3.2" { inherit profileName; };
737737
rustls = rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls."0.20.6" { inherit profileName; };
@@ -757,9 +757,9 @@ in
757757
};
758758
});
759759

760-
"unknown".drawbridge-client."0.2.3" = overridableMkRustCrate (profileName: rec {
760+
"unknown".drawbridge-client."0.2.4" = overridableMkRustCrate (profileName: rec {
761761
name = "drawbridge-client";
762-
version = "0.2.3";
762+
version = "0.2.4";
763763
registry = "unknown";
764764
src = fetchCrateLocal (workspaceSrc + "/crates/client");
765765
dependencies = {

crates/client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "drawbridge-client"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
authors = ["Profian Inc"]
55
edition = "2021"
66
license = "AGPL-3.0-or-later"
@@ -12,7 +12,7 @@ keywords = ["drawbridge"]
1212
[dependencies]
1313
# Internal dependencies
1414
drawbridge-jose = { path = "../jose", version = "0.2.0" }
15-
drawbridge-type = { path = "../type", version = "0.2.0" }
15+
drawbridge-type = { path = "../type", version = "0.2.2" }
1616

1717
# External dependencies
1818
anyhow = { version = "1.0", default-features = false, features = ["std"] }

0 commit comments

Comments
 (0)