34 lines
955 B
TOML
34 lines
955 B
TOML
[package]
|
|
categories = ["api-bindings", "cryptography"]
|
|
description = "Digital signatures according to the Matrix specification."
|
|
homepage = "https://www.ruma.io/"
|
|
keywords = ["matrix", "chat", "messaging", "ruma", "cryptography"]
|
|
license = "MIT"
|
|
name = "ruma-signatures"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/ruma"
|
|
version = "0.12.0"
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
ring-compat = ["dep:subslice"]
|
|
unstable-exhaustive-types = []
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
ed25519-dalek = "1.0.1"
|
|
pkcs8 = { version = "0.9.0", features = ["alloc"] }
|
|
# because dalek uses an older version of rand_core
|
|
rand = { version = "0.7", features = ["getrandom"] }
|
|
ruma-common = { version = "0.10.3", path = "../ruma-common", features = ["canonical-json"] }
|
|
serde_json = "1.0.60"
|
|
sha2 = "0.9.5"
|
|
subslice = { version = "0.2.3", optional = true }
|
|
thiserror = "1.0.26"
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|