summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-07-19 21:59:54 +0200
committerrtkay123 <dev@kanjala.com>2025-07-19 21:59:54 +0200
commit4616c62bcd899a76062c611b96b13833f782f51e (patch)
tree08623395d1ddabf00b2b42770541df41656b3448 /Cargo.lock
parent5758ef50c8b1297e29f32aea105e8821e625ab6f (diff)
downloadsellershut-4616c62bcd899a76062c611b96b13833f782f51e.tar.bz2
sellershut-4616c62bcd899a76062c611b96b13833f782f51e.zip
feat: sign request
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock57
1 files changed, 56 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f2e4973..5f2b51d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -739,6 +739,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
[[package]]
+name = "foreign-types"
+version = "0.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
+dependencies = [
+ "foreign-types-shared",
+]
+
+[[package]]
+name = "foreign-types-shared"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
+
+[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1546,6 +1561,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
[[package]]
+name = "openssl"
+version = "0.10.73"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
+dependencies = [
+ "bitflags",
+ "cfg-if",
+ "foreign-types",
+ "libc",
+ "once_cell",
+ "openssl-macros",
+ "openssl-sys",
+]
+
+[[package]]
+name = "openssl-macros"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.104",
+]
+
+[[package]]
+name = "openssl-sys"
+version = "0.9.109"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
+dependencies = [
+ "cc",
+ "libc",
+ "pkg-config",
+ "vcpkg",
+]
+
+[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2059,17 +2112,19 @@ dependencies = [
"anyhow",
"async-trait",
"axum",
+ "base64",
"clap",
"config",
"enum_delegate",
"futures-util",
- "hmac",
"nanoid",
+ "openssl",
"serde",
"serde_json",
"sha2",
"sqlx",
"stack-up",
+ "time",
"tokio",
"tower",
"tower-http",