24 lines
682 B
TOML
24 lines
682 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]
|
|
serde = { version = "1.0.114", optional = true, features = ["derive"] }
|
|
strum = { version = "0.19.2", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
ruma-serde = { version = "0.2.3", path = "../ruma-serde" }
|
|
serde_json = "1.0.57"
|