forked from Luke-Larsen/Vector-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (29 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
30 lines (29 loc) · 875 Bytes
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
[package]
name = "vector_sdk"
version = "0.2.1"
edition = "2021"
description = "Rust SDK for building Vector bots"
license = "MIT"
readme = "README.md"
keywords = ["nostr", "sdk", "bot", "crypto", "async"]
categories = ["network-programming", "asynchronous", "cryptography", "api-bindings"]
rust-version = "1.75"
[dependencies]
nostr-sdk = { version = "0.42.0", features = ["nip04", "nip06", "nip44", "nip59", "nip96"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.117"
aes = "0.8.4"
aes-gcm = "0.10.3"
generic-array = "0.14.7"
hex = "0.4.3"
reqwest = { version = "0.12.20", features = ["rustls-tls", "stream", "blocking", "json"] }
tokio = { version = "1.46.1", features = ["full"] }
futures-util = "0.3.31"
once_cell = "1.21.3"
sha2 = "0.10.9"
log = "0.4.22"
thiserror = "1.0.61"
rand = "0.8.5"
url = "2"
mime_guess = "2"
magical_rs = "0.4.5"