Amanda Graven fdc15123b0
Reorganize encyption related code
Some types used for encryption related tasks need to be used across more
internal crates than expected, so a few have been moved and renamed for
clarity.

* Rename the key_algorithms module in ruma-identifiers-validation to crypto_algorithms
* Move ruma_events::Algorithm to ruma-identifiers-validation and rename it EventEncryptionAlgorithm
* Move DeviceKeys from ruma-client-api to ruma-common
2020-08-10 18:38:53 +02:00

23 lines
662 B
TOML

[package]
name = "ruma-identifiers-validation"
description = "Validation logic for ruma-identifiers and ruma-identifiers-macros"
documentation = "https://docs.rs/ruma-identifiers"
homepage = "https://www.ruma.io/"
repository = "https://github.com/ruma/ruma"
authors = [
"Jimmy Cuadra <jimmy@jimmycuadra.com>",
"Jonas Platte <jplatte@posteo.de>",
]
license = "MIT"
version = "0.1.1"
edition = "2018"
[features]
default = ["serde"]
[dependencies]
ruma-serde = { version = "0.2.3", path = "../ruma-serde" }
serde = { version = "1.0.114", optional = true, features = ["derive"] }
serde_json = "1.0.57"
strum = { version = "0.19.2", features = ["derive"] }