This commit is contained in:
bitfl0wer 2024-08-19 19:44:37 +02:00
parent 93f915d239
commit 1c4ff11b35
No known key found for this signature in database
GPG Key ID: 8D90CA11485CD14D
2 changed files with 5 additions and 5 deletions

6
Cargo.lock generated
View File

@ -2315,8 +2315,7 @@ dependencies = [
[[package]]
name = "sqlx-pg-uint"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba7acddf6774b42bfba10aad5a0496e3df8bc6a45a2a0ab010175b69280a5f2c"
source = "git+https://github.com/bitfl0wer/sqlx-pg-uint#a132f4ad12f6cd1f68cc07e01edd644b4735e346"
dependencies = [
"bigdecimal",
"serde",
@ -2328,8 +2327,7 @@ dependencies = [
[[package]]
name = "sqlx-pg-uint-macros"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3415daefc001b6cda372707886d508a819196d39fc769e9d9aed2b4e659a51b3"
source = "git+https://github.com/bitfl0wer/sqlx-pg-uint#a132f4ad12f6cd1f68cc07e01edd644b4735e346"
dependencies = [
"quote",
"syn 2.0.75",

View File

@ -67,7 +67,9 @@ rand = "0.8.5"
flate2 = { version = "1.0.30", optional = true }
webpki-roots = "0.26.3"
pubserve = { version = "1.1.0", features = ["async", "send"] }
sqlx-pg-uint = { version = "0.3.0", optional = true }
sqlx-pg-uint = { git = "https://github.com/bitfl0wer/sqlx-pg-uint", features = [
"serde",
], optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rustls = "0.21.12"