Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | ref(deps): Bump Nostr SDK dependency |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7378c676a025de720d2b1b28846207d0 |
User & Date: | carlos 2023-09-17 18:49:24 |
Context
2023-09-17
| ||
19:26 | ref(deps): Bump dependency versions check-in: d26486bd53 user: carlos tags: trunk | |
18:49 | ref(deps): Bump Nostr SDK dependency check-in: 7378c676a0 user: carlos tags: trunk | |
18:34 | fix(lnurl): Remove deprecated LNURL-pay description hash validation check-in: f1b7404732 user: carlos tags: trunk | |
Changes
Changes to Cargo.lock.
︙ | ︙ | |||
2577 2578 2579 2580 2581 2582 2583 | checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" dependencies = [ "windows-sys 0.48.0", ] [[package]] name = "nostr" | | | | | | | | 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 | checksum = "ec60c60a693226186f5d6edf073232bfb6464ed97eb22cf3b01c1e8198fd97f5" dependencies = [ "windows-sys 0.48.0", ] [[package]] name = "nostr" version = "0.24.0" source = "git+https://github.com/rust-nostr/nostr?tag=v0.24.0#fda219a74b89c62ace2b1869b1f6a7eec37e116c" dependencies = [ "aes", "base64 0.21.4", "bip39", "bitcoin 0.30.1", "cbc", "chacha20", "getrandom 0.2.10", "instant", "once_cell", "reqwest", "serde", "serde_json", "tracing", "url-fork", ] [[package]] name = "nostr-sdk" version = "0.24.0" source = "git+https://github.com/rust-nostr/nostr?tag=v0.24.0#fda219a74b89c62ace2b1869b1f6a7eec37e116c" dependencies = [ "async-utility", "nostr", "nostr-sdk-net", "once_cell", "thiserror", "tokio", "tracing", ] [[package]] name = "nostr-sdk-net" version = "0.24.0" source = "git+https://github.com/rust-nostr/nostr?tag=v0.24.0#fda219a74b89c62ace2b1869b1f6a7eec37e116c" dependencies = [ "futures-util", "thiserror", "tokio", "tokio-rustls 0.24.1", "tokio-socks", "tokio-tungstenite", |
︙ | ︙ | |||
3183 3184 3185 3186 3187 3188 3189 | "flate2", "miniz_oxide", ] [[package]] name = "powpub" version = "0.1.4-SNAPSHOT" | | | 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 | "flate2", "miniz_oxide", ] [[package]] name = "powpub" version = "0.1.4-SNAPSHOT" source = "git+https://oak-node.net/cgit/powpub.git?rev=d3f401eb5f495d71c24d0cd2fd98ab9b118a852a#d3f401eb5f495d71c24d0cd2fd98ab9b118a852a" dependencies = [ "anyhow", "async-trait", "base64 0.20.0", "bech32", "cfg_aliases", "env_logger", |
︙ | ︙ |
Changes to Cargo.toml.
︙ | ︙ | |||
13 14 15 16 17 18 19 | futures-util = "*" hex = "*" itertools = "*" lightning-invoice = "*" ln-sdk = { git = "https://oak-node.net/cgit/ln-sdk.git", rev = "58fb158856891d13d65689f1749119df8e2792ab", features = [ "client-lnd", "utoipa" ] } log = "*" log4rs = "*" | < | | > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | futures-util = "*" hex = "*" itertools = "*" lightning-invoice = "*" ln-sdk = { git = "https://oak-node.net/cgit/ln-sdk.git", rev = "58fb158856891d13d65689f1749119df8e2792ab", features = [ "client-lnd", "utoipa" ] } log = "*" log4rs = "*" qrcode-generator = "*" nostr = { git = "https://github.com/rust-nostr/nostr", default-features = false, features = ["nip04", "nip05", "nip47"], tag = "v0.24.0" } nostr-sdk = { git = "https://github.com/rust-nostr/nostr", default-features = false, tag = "v0.24.0" } powpub = { git = "https://oak-node.net/cgit/powpub.git", rev = "d3f401eb5f495d71c24d0cd2fd98ab9b118a852a", features = [ "client-lnd", "utoipa" ] } reqwest = { version = "*", default-features = false, features = ["json", "native-tls", "socks"] } rocket = { version = "0.5.0-rc.3", features = ["json"] } rocket_db_pools = { version = "0.1.0-rc.3", features = ["sqlx_sqlite"] } rocket_dyn_templates = { version = "0.1.0-rc.3", features = ["tera"] } serde = "*" serde_json = "*" serde_with = "*" |
︙ | ︙ |