upleb.uk

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

summaryrefslogtreecommitdiff
path: root/Cargo.toml
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
commitb9a88672b8734448615354e3f46748d2fdc2f647 (patch)
treefd9b55c4ea8a132ab31abec3b6b8a4833c9bd8ff /Cargo.toml
parent5dce8a09f0f980b878bd02b7e96fc001155492ec (diff)
feat(prs-create) send commit to relay
- add client - use client to send event - add async functionality - enabler for relay interaction whilst getting cli input
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1b2c458..f7577a4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,17 +13,21 @@ categories = ["command-line-utilities","git"]
13 13
14[dependencies] 14[dependencies]
15anyhow = "1.0.75" 15anyhow = "1.0.75"
16async-trait = "0.1.73"
16chacha20poly1305 = "0.10.1" 17chacha20poly1305 = "0.10.1"
17clap = { version = "4.3.19", features = ["derive"] } 18clap = { version = "4.3.19", features = ["derive"] }
18dialoguer = "0.10.4" 19dialoguer = "0.10.4"
19directories = "5.0.1" 20directories = "5.0.1"
21futures = "0.3.28"
20git2 = "0.18.1" 22git2 = "0.18.1"
21keyring = "2.0.5" 23keyring = "2.0.5"
22nostr = "0.23.0" 24nostr = "0.24.0"
25nostr-sdk = "0.24.0"
23passwords = "3.1.13" 26passwords = "3.1.13"
24scrypt = "0.11.0" 27scrypt = "0.11.0"
25serde = { version = "1.0.181", features = ["derive"] } 28serde = { version = "1.0.181", features = ["derive"] }
26serde_json = "1.0.105" 29serde_json = "1.0.105"
30tokio = "1.33.0"
27zeroize = "1.6.0" 31zeroize = "1.6.0"
28 32
29[dev-dependencies] 33[dev-dependencies]