From c24da1be1ef0762c19e7462bb6311dd9e989d8a2 Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 24 May 2023 10:19:56 -0500 Subject: [PATCH] Bump version --- Cargo.lock | 12 +++++++----- Cargo.toml | 5 +---- pict-rs.nix | 6 +----- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6ac2a8..e846d48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1162,9 +1162,9 @@ dependencies = [ [[package]] name = "io-lifetimes" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ "hermit-abi 0.3.1", "libc", @@ -1643,7 +1643,7 @@ dependencies = [ [[package]] name = "pict-rs" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" dependencies = [ "actix-form-data", "actix-rt", @@ -2529,7 +2529,8 @@ dependencies = [ [[package]] name = "tracing-actix-web" version = "0.7.5" -source = "git+https://github.com/asonix/tracing-actix-web?branch=asonix/opentelemetry-19#5cac8b6fe09b753bcea556c11aa069a88e12ff07" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce52ffaf2d544e317d3bef63f49a6a22022866505fa4840a4339b1756834a2a9" dependencies = [ "actix-web", "opentelemetry", @@ -2553,7 +2554,8 @@ dependencies = [ [[package]] name = "tracing-awc" version = "0.1.7" -source = "git+https://git.asonix.dog/asonix/tracing-awc#efa1d019f67ba734e0b62e8aa4053d211c591be8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaa1a68fce4d1a7fad459f81ddcafbdd7c6f6bcda5c7e07d5f42db637931fac7" dependencies = [ "actix-http", "actix-service", diff --git a/Cargo.toml b/Cargo.toml index 47a0dfc..18cd182 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pict-rs" description = "A simple image hosting service" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" @@ -77,13 +77,10 @@ uuid = { version = "1", features = ["v4", "serde"] } [dependencies.tracing-actix-web] version = "0.7.5" -git = "https://github.com/asonix/tracing-actix-web" -branch = "asonix/opentelemetry-19" default-features = false features = ["opentelemetry_0_19"] [dependencies.tracing-awc] version = "0.1.7" -git = "https://git.asonix.dog/asonix/tracing-awc" default-features = false features = ["opentelemetry_0_19"] diff --git a/pict-rs.nix b/pict-rs.nix index 37da679..ab93336 100644 --- a/pict-rs.nix +++ b/pict-rs.nix @@ -12,15 +12,11 @@ rustPlatform.buildRustPackage { pname = "pict-rs"; - version = "0.4.0-rc.1"; + version = "0.4.0-rc.2"; src = ./.; cargoLock = { lockFile = ./Cargo.lock; - outputHashes = { - "tracing-actix-web-0.7.5" = "R59NCuirD3TVUux3Ohor6Pz8mjPIO8KbFxv5Vwd46UQ="; - "tracing-awc-0.1.7" = "IsaXUSRL2dSAHauhNbApvRDJ46ltXWgbrxtiZjQ/HMg="; - }; }; PROTOC = "${protobuf}/bin/protoc";