-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1010 Bytes
/
Cargo.toml
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
42
43
44
[package]
name = "nostrust"
version = "0.1.0"
edition = "2021"
authors = ["Komron Aripov", "Prithvi Oak"]
keywords = ["nostr", "rust", "sgx", "enclave"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
hex = "0.4"
httparse = "1.9.5"
chrono = "0.4.38"
secp256k1 = "0.30.0"
rand = "0.8.5"
anyhow = "1.0.94"
dialoguer = { version = "0.11.0", optional = true }
tiny_http = "0.12.0"
sgx-isa = { version = "0.4", features = ["sgxstd", "serde"] }
reqwest = { version = "0.12.9", features = ["blocking"], optional = true}
axum = { version = "0.7.9", features = ["macros"], optional = true}
tokio = { version = "1.42.0", features = ["full"], optional = true}
aes-gcm = "0.10.3"
base64 = "0.22.1"
[features]
untrusted = ["dialoguer", "reqwest", "axum", "tokio"]
[lib]
name = "core"
path = "src/lib.rs"
[[bin]]
name = "client"
path = "src/client/main.rs"
[[bin]]
name = "relay"
path = "src/relay/main.rs"
[[bin]]
name = "filerunner"
path = "src/filerunner/main.rs"