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:
authorDanConwayDev <DanConwayDev@protonmail.com>2023-10-01 00:00:00 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2023-10-01 00:00:00 +0100
commit6e9245542f070c39a1975f0d53d88913c4ac667d (patch)
tree835c1d3db05f76f437c5d8ebc5591f1796cdab60 /Cargo.lock
parentaa48a626c08cec353d5563a8831239d2e69c9f3d (diff)
feat(prs-create) find commits and create events
- identify commits - create pull request event - create patch events
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock98
1 files changed, 98 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 994445e..5f0293e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -446,6 +446,7 @@ version = "1.0.83"
446source = "registry+https://github.com/rust-lang/crates.io-index" 446source = "registry+https://github.com/rust-lang/crates.io-index"
447checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 447checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
448dependencies = [ 448dependencies = [
449 "jobserver",
449 "libc", 450 "libc",
450] 451]
451 452
@@ -968,6 +969,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
968checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 969checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
969 970
970[[package]] 971[[package]]
972name = "git2"
973version = "0.18.1"
974source = "registry+https://github.com/rust-lang/crates.io-index"
975checksum = "fbf97ba92db08df386e10c8ede66a2a0369bd277090afd8710e19e38de9ec0cd"
976dependencies = [
977 "bitflags 2.4.0",
978 "libc",
979 "libgit2-sys",
980 "log",
981 "openssl-probe",
982 "openssl-sys",
983 "url",
984]
985
986[[package]]
971name = "h2" 987name = "h2"
972version = "0.3.21" 988version = "0.3.21"
973source = "registry+https://github.com/rust-lang/crates.io-index" 989source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1197,6 +1213,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1197checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 1213checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
1198 1214
1199[[package]] 1215[[package]]
1216name = "jobserver"
1217version = "0.1.26"
1218source = "registry+https://github.com/rust-lang/crates.io-index"
1219checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
1220dependencies = [
1221 "libc",
1222]
1223
1224[[package]]
1200name = "js-sys" 1225name = "js-sys"
1201version = "0.3.64" 1226version = "0.3.64"
1202source = "registry+https://github.com/rust-lang/crates.io-index" 1227source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1232,6 +1257,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1232checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 1257checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
1233 1258
1234[[package]] 1259[[package]]
1260name = "libgit2-sys"
1261version = "0.16.1+1.7.1"
1262source = "registry+https://github.com/rust-lang/crates.io-index"
1263checksum = "f2a2bb3680b094add03bb3732ec520ece34da31a8cd2d633d1389d0f0fb60d0c"
1264dependencies = [
1265 "cc",
1266 "libc",
1267 "libssh2-sys",
1268 "libz-sys",
1269 "openssl-sys",
1270 "pkg-config",
1271]
1272
1273[[package]]
1274name = "libssh2-sys"
1275version = "0.3.0"
1276source = "registry+https://github.com/rust-lang/crates.io-index"
1277checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
1278dependencies = [
1279 "cc",
1280 "libc",
1281 "libz-sys",
1282 "openssl-sys",
1283 "pkg-config",
1284 "vcpkg",
1285]
1286
1287[[package]]
1288name = "libz-sys"
1289version = "1.1.12"
1290source = "registry+https://github.com/rust-lang/crates.io-index"
1291checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
1292dependencies = [
1293 "cc",
1294 "libc",
1295 "pkg-config",
1296 "vcpkg",
1297]
1298
1299[[package]]
1235name = "linux-keyutils" 1300name = "linux-keyutils"
1236version = "0.2.3" 1301version = "0.2.3"
1237source = "registry+https://github.com/rust-lang/crates.io-index" 1302source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1357,6 +1422,7 @@ dependencies = [
1357 "dialoguer", 1422 "dialoguer",
1358 "directories", 1423 "directories",
1359 "duplicate", 1424 "duplicate",
1425 "git2",
1360 "keyring", 1426 "keyring",
1361 "mockall", 1427 "mockall",
1362 "nostr", 1428 "nostr",
@@ -1525,6 +1591,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1525checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1591checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
1526 1592
1527[[package]] 1593[[package]]
1594name = "openssl-probe"
1595version = "0.1.5"
1596source = "registry+https://github.com/rust-lang/crates.io-index"
1597checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1598
1599[[package]]
1600name = "openssl-sys"
1601version = "0.9.93"
1602source = "registry+https://github.com/rust-lang/crates.io-index"
1603checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d"
1604dependencies = [
1605 "cc",
1606 "libc",
1607 "pkg-config",
1608 "vcpkg",
1609]
1610
1611[[package]]
1528name = "option-ext" 1612name = "option-ext"
1529version = "0.2.0" 1613version = "0.2.0"
1530source = "registry+https://github.com/rust-lang/crates.io-index" 1614source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1618,6 +1702,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1618checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1702checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1619 1703
1620[[package]] 1704[[package]]
1705name = "pkg-config"
1706version = "0.3.27"
1707source = "registry+https://github.com/rust-lang/crates.io-index"
1708checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
1709
1710[[package]]
1621name = "polling" 1711name = "polling"
1622version = "2.8.0" 1712version = "2.8.0"
1623source = "registry+https://github.com/rust-lang/crates.io-index" 1713source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2362,8 +2452,10 @@ dependencies = [
2362 "assert_cmd", 2452 "assert_cmd",
2363 "dialoguer", 2453 "dialoguer",
2364 "directories", 2454 "directories",
2455 "git2",
2365 "nostr", 2456 "nostr",
2366 "once_cell", 2457 "once_cell",
2458 "rand",
2367 "rexpect 0.5.0 (git+https://github.com/phaer/rexpect.git?branch=skip-ansi-escape-codes)", 2459 "rexpect 0.5.0 (git+https://github.com/phaer/rexpect.git?branch=skip-ansi-escape-codes)",
2368 "strip-ansi-escapes", 2460 "strip-ansi-escapes",
2369] 2461]
@@ -2593,6 +2685,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2593checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2685checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2594 2686
2595[[package]] 2687[[package]]
2688name = "vcpkg"
2689version = "0.2.15"
2690source = "registry+https://github.com/rust-lang/crates.io-index"
2691checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2692
2693[[package]]
2596name = "version_check" 2694name = "version_check"
2597version = "0.9.4" 2695version = "0.9.4"
2598source = "registry+https://github.com/rust-lang/crates.io-index" 2696source = "registry+https://github.com/rust-lang/crates.io-index"