forked from futurepaul/nostr-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 898 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
[package]
name = "nostr"
version = "0.1.0"
authors = ["Paul Miller <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitcoin_hashes = { version = "0.11", features = ["serde"] }
chrono = { version = "0.4.19", features = ["serde"] }
csv = "1.1.5"
secp256k1 = { version = "0.24", features = ["rand", "rand-std", "serde", "bitcoin_hashes"] }
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
serde_repr = "0.1.6"
aes = "0.7.5"
block-modes = "0.8.1"
base64 = "0.13.0"
thiserror = "1.0.29"
# On some systems the OpenSSL headers might not be installed. Provide them as vendored dependency.
openssl = { version = "0.10", features = ["vendored"] }
log = "*"
[dev-dependencies]
tungstenite = { version = "0.17", features = ["native-tls"]}
url = "2.2.0"
env_logger = "0.8.2"