upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock74
1 files changed, 74 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bf0032e..850da5b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -956,6 +956,18 @@ dependencies = [
956] 956]
957 957
958[[package]] 958[[package]]
959name = "fallible-iterator"
960version = "0.3.0"
961source = "registry+https://github.com/rust-lang/crates.io-index"
962checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
963
964[[package]]
965name = "fallible-streaming-iterator"
966version = "0.1.9"
967source = "registry+https://github.com/rust-lang/crates.io-index"
968checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
969
970[[package]]
959name = "fastrand" 971name = "fastrand"
960version = "1.9.0" 972version = "1.9.0"
961source = "registry+https://github.com/rust-lang/crates.io-index" 973source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -971,6 +983,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
971checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" 983checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
972 984
973[[package]] 985[[package]]
986name = "flatbuffers"
987version = "23.5.26"
988source = "registry+https://github.com/rust-lang/crates.io-index"
989checksum = "4dac53e22462d78c16d64a1cd22371b54cc3fe94aa15e7886a2fa6e5d1ab8640"
990dependencies = [
991 "bitflags 1.3.2",
992 "rustc_version",
993]
994
995[[package]]
974name = "float-cmp" 996name = "float-cmp"
975version = "0.9.0" 997version = "0.9.0"
976source = "registry+https://github.com/rust-lang/crates.io-index" 998source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1197,6 +1219,15 @@ dependencies = [
1197] 1219]
1198 1220
1199[[package]] 1221[[package]]
1222name = "hashlink"
1223version = "0.9.1"
1224source = "registry+https://github.com/rust-lang/crates.io-index"
1225checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1226dependencies = [
1227 "hashbrown",
1228]
1229
1230[[package]]
1200name = "heck" 1231name = "heck"
1201version = "0.4.1" 1232version = "0.4.1"
1202source = "registry+https://github.com/rust-lang/crates.io-index" 1233source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1513,6 +1544,17 @@ dependencies = [
1513] 1544]
1514 1545
1515[[package]] 1546[[package]]
1547name = "libsqlite3-sys"
1548version = "0.28.0"
1549source = "registry+https://github.com/rust-lang/crates.io-index"
1550checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
1551dependencies = [
1552 "cc",
1553 "pkg-config",
1554 "vcpkg",
1555]
1556
1557[[package]]
1516name = "libssh2-sys" 1558name = "libssh2-sys"
1517version = "0.3.0" 1559version = "0.3.0"
1518source = "registry+https://github.com/rust-lang/crates.io-index" 1560source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1717,7 +1759,9 @@ dependencies = [
1717 "keyring", 1759 "keyring",
1718 "mockall", 1760 "mockall",
1719 "nostr", 1761 "nostr",
1762 "nostr-database",
1720 "nostr-sdk", 1763 "nostr-sdk",
1764 "nostr-sqlite",
1721 "once_cell", 1765 "once_cell",
1722 "passwords", 1766 "passwords",
1723 "rexpect 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 1767 "rexpect 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1811,6 +1855,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "a88a72f92fbd5d2514db36e07a864646f1c1f44931c4a5ea195f6961029af4b3" 1855checksum = "a88a72f92fbd5d2514db36e07a864646f1c1f44931c4a5ea195f6961029af4b3"
1812dependencies = [ 1856dependencies = [
1813 "async-trait", 1857 "async-trait",
1858 "flatbuffers",
1814 "lru", 1859 "lru",
1815 "nostr", 1860 "nostr",
1816 "thiserror", 1861 "thiserror",
@@ -1869,6 +1914,21 @@ dependencies = [
1869] 1914]
1870 1915
1871[[package]] 1916[[package]]
1917name = "nostr-sqlite"
1918version = "0.32.0"
1919source = "registry+https://github.com/rust-lang/crates.io-index"
1920checksum = "418555707a30105f738b3a54a1ae13ffca5e7ec10b4d27a8c20bedde636233c3"
1921dependencies = [
1922 "async-trait",
1923 "nostr",
1924 "nostr-database",
1925 "rusqlite",
1926 "thiserror",
1927 "tokio",
1928 "tracing",
1929]
1930
1931[[package]]
1872name = "nostr-zapper" 1932name = "nostr-zapper"
1873version = "0.32.0" 1933version = "0.32.0"
1874source = "registry+https://github.com/rust-lang/crates.io-index" 1934source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2509,6 +2569,20 @@ dependencies = [
2509] 2569]
2510 2570
2511[[package]] 2571[[package]]
2572name = "rusqlite"
2573version = "0.31.0"
2574source = "registry+https://github.com/rust-lang/crates.io-index"
2575checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
2576dependencies = [
2577 "bitflags 2.5.0",
2578 "fallible-iterator",
2579 "fallible-streaming-iterator",
2580 "hashlink",
2581 "libsqlite3-sys",
2582 "smallvec",
2583]
2584
2585[[package]]
2512name = "rustc-demangle" 2586name = "rustc-demangle"
2513version = "0.1.23" 2587version = "0.1.23"
2514source = "registry+https://github.com/rust-lang/crates.io-index" 2588source = "registry+https://github.com/rust-lang/crates.io-index"