-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (22 loc) · 822 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
[package]
name = "nostr-nostd"
version = "0.2.1"
description = "Implementation of a nostr client in a ![no_std] environment"
documentation = "https://docs.rs/nostr-nostd"
repository = "https://github.com/isaac-asdf/nostr-nostd"
authors = ["Isaac Eiter"]
readme = "README.md"
categories = ["cryptography", "encoding", "no-std"]
keywords = ["crypto", "nostr"]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base16ct = "0.2.0"
heapless = { version = "0.7.14", default-features = false }
secp256k1 = {version = "0.27.0", default-features = false, features = ["lowmemory"] }
sha2 = { version = "0.10.7", default-features = false }
# NIP04
aes = "0.8.3"
cbc = { version = "0.1.2", default-features = false }
base64ct = "1.6.0"