ruwuma/crates/ruma-signatures/Cargo.toml
Jade Ellis e087ff1588
chore(deps): Upgrade rand
We're stuck with an old core version because of
`ed25519-dalek` but we can survive that at least
2026-02-20 22:52:51 +00:00

37 lines
1 KiB
TOML

[package]
categories = ["api-bindings", "cryptography"]
description = "Digital signatures according to the Matrix specification."
homepage = "https://ruma.dev/"
keywords = ["matrix", "chat", "messaging", "ruma", "cryptography"]
license = "MIT"
name = "ruma-signatures"
readme = "README.md"
repository = "https://github.com/ruma/ruma"
version = "0.15.0"
edition = "2021"
[package.metadata.docs.rs]
all-features = true
[features]
ring-compat = ["dep:subslice"]
unstable-exhaustive-types = []
[dependencies]
base64 = { workspace = true }
ed25519-dalek = { version = "2.0.0", features = ["pkcs8", "rand_core"] }
pkcs8 = { version = "0.10.0", features = ["alloc"] }
rand = { workspace = true }
rand_core = { version = "0.6.4", features = ["getrandom"] }
ruma-common = { workspace = true, features = ["canonical-json"] }
serde_json = { workspace = true }
sha2 = "0.10.6"
subslice = { version = "0.2.3", optional = true }
thiserror = { workspace = true }
[dev-dependencies]
assert_matches2 = { workspace = true }
insta = "1.31.0"
[lints]
workspace = true