git-subtree-dir: crates/ruma-state-res git-subtree-mainline: 719433eb5c41fb5b8099481ce7bb0a37931b260f git-subtree-split: 56bf45c0235701ac6df56993c327d2f97a499ef9
38 lines
905 B
TOML
38 lines
905 B
TOML
[package]
|
|
name = "state-res"
|
|
version = "0.1.0"
|
|
authors = ["Devin R <devin.ragotzy@gmail.com>"]
|
|
edition = "2018"
|
|
categories = ["api-bindings", "web-programming"]
|
|
description = "An abstraction for Matrix state resolution."
|
|
homepage = "https://www.ruma.io/"
|
|
keywords = ["matrix", "chat", "state resolution", "ruma"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/state-res"
|
|
|
|
[dependencies]
|
|
itertools = "0.10.0"
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
|
serde_json = "1.0.60"
|
|
maplit = "1.0.2"
|
|
thiserror = "1.0.22"
|
|
log = "0.4.11"
|
|
|
|
[features]
|
|
unstable-pre-spec = ["ruma/unstable-pre-spec"]
|
|
|
|
[dependencies.ruma]
|
|
git = "https://github.com/ruma/ruma"
|
|
rev = "8c286e78d41770fe431e7304cc2fe23e383793df"
|
|
features = ["events", "signatures"]
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.3"
|
|
rand = "0.7.3"
|
|
tracing-subscriber = "0.2.15"
|
|
|
|
[[bench]]
|
|
name = "state_res_bench"
|
|
harness = false
|