update nostr-types

This commit is contained in:
Mike Dilger 2023-01-17 12:26:45 +13:00
parent 9f3ed45500
commit 76c9791d99

66
Cargo.lock generated
View File

@ -1727,7 +1727,7 @@ dependencies = [
"tokio-tungstenite", "tokio-tungstenite",
"tracing", "tracing",
"tracing-subscriber", "tracing-subscriber",
"tungstenite", "tungstenite 0.18.0",
"zeroize", "zeroize",
] ]
@ -2353,8 +2353,8 @@ dependencies = [
[[package]] [[package]]
name = "nostr-types" name = "nostr-types"
version = "0.2.0-unstable" version = "0.3.0-unstable"
source = "git+https://github.com/mikedilger/nostr-types#9ee82ea432fac7aab6c1d949c1941495a98eaeac" source = "git+https://github.com/mikedilger/nostr-types#0139478ac1d758fcb3b675b617d4416e33f4105f"
dependencies = [ dependencies = [
"aes", "aes",
"base64 0.13.1", "base64 0.13.1",
@ -2367,11 +2367,15 @@ dependencies = [
"k256", "k256",
"num_cpus", "num_cpus",
"pbkdf2", "pbkdf2",
"rand 0.8.5",
"rand_core 0.6.4", "rand_core 0.6.4",
"reqwest",
"rpassword",
"serde", "serde",
"serde_json", "serde_json",
"sha2", "sha2",
"thiserror", "thiserror",
"tungstenite 0.17.3",
"zeroize", "zeroize",
] ]
@ -3057,6 +3061,27 @@ dependencies = [
"xmlparser", "xmlparser",
] ]
[[package]]
name = "rpassword"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322"
dependencies = [
"libc",
"rtoolbox",
"winapi",
]
[[package]]
name = "rtoolbox"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a"
dependencies = [
"libc",
"winapi",
]
[[package]] [[package]]
name = "rusqlite" name = "rusqlite"
version = "0.28.0" version = "0.28.0"
@ -3339,6 +3364,17 @@ dependencies = [
"pkg-config", "pkg-config",
] ]
[[package]]
name = "sha-1"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]] [[package]]
name = "sha1" name = "sha1"
version = "0.10.5" version = "0.10.5"
@ -3746,7 +3782,7 @@ dependencies = [
"rustls-native-certs", "rustls-native-certs",
"tokio", "tokio",
"tokio-rustls", "tokio-rustls",
"tungstenite", "tungstenite 0.18.0",
"webpki", "webpki",
] ]
@ -3859,6 +3895,28 @@ version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff" checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff"
[[package]]
name = "tungstenite"
version = "0.17.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0"
dependencies = [
"base64 0.13.1",
"byteorder",
"bytes",
"http",
"httparse",
"log",
"rand 0.8.5",
"rustls",
"rustls-native-certs",
"sha-1",
"thiserror",
"url",
"utf-8",
"webpki",
]
[[package]] [[package]]
name = "tungstenite" name = "tungstenite"
version = "0.18.0" version = "0.18.0"