blob: 789a9ca1a492b07c6a50fe005a62f4276ba97790 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
[package]
name = "grasp-audit"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
description = "Audit and compliance testing tool for GRASP protocol implementations"
license = "MIT"
[[bin]]
name = "grasp-audit"
path = "src/bin/grasp-audit.rs"
[dependencies]
# Nostr
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", rev = "4767ad13" }
# Async
tokio = { version = "1", features = ["full"] }
# Serialization
serde_json = "1"
# Error handling
anyhow = "1"
# CLI
clap = { version = "4", features = ["derive"] }
# Utilities
uuid = { version = "1", features = ["v4"] }
# HTTP Client
reqwest = { version = "0.11", features = ["json"] }
regex = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
tempfile = "3"
|