[package]
edition = "2021"
name = "ruma-lean"
version = "0.1.0"
authors = ["Shane Jaroch <chown_tee@proton.me>"]
build = false
exclude = [
".github/",
".gitignore",
".pre-commit-config.yaml",
".prettierignore",
".prettierrc",
"Makefile",
"lake-manifest.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Formally verified, dependency-free Matrix State Resolution v2 logic."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/gamesguru/ruma-zk"
[features]
alloc = [
"hashbrown",
"serde_json",
]
default = ["std"]
std = [
"serde_json",
"ed25519-consensus",
]
zkvm = []
[lib]
name = "ruma_lean"
path = "src/lib.rs"
[dependencies.base64]
version = "0.21"
[dependencies.ed25519-consensus]
version = "2.1"
optional = true
[dependencies.hashbrown]
version = "0.14"
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
optional = true