[package]
name = "seshat"
version = "2.3.2"
authors = ["Damir Jelić <poljar@termina.org.uk>"]
edition = "2018"
license = "Apache-2.0"
description = "A matrix message logger with full text search support"
readme="README.md"
repository="https://github.com/matrix-org/seshat/"
[features]
default = ["encryption"]
encryption = ["rusqlite/sqlcipher", "aes", "crypto-mac", "hmac", "sha2",
"hkdf", "pbkdf2", "rand", "zeroize", "byteorder"]
[dependencies]
tantivy = "0.12.0"
tinysegmenter = "0.1.1"
rusqlite = "0.26.3"
fs_extra = "1.2.0"
r2d2_sqlite = "0.19.0"
r2d2 = "0.8.9"
lru-cache = "0.1.2"
uuid = { version = "0.8.2", features = ["v4"] }
aes = { version = "0.7.5", optional = true, features = ["ctr"] }
crypto-mac = { version = "0.11.1", optional = true }
hmac = { version = "0.11.0", optional = true }
sha2 = { version = "0.9.5", optional = true }
hkdf = { version = "0.11.0", optional = true }
pbkdf2 = { version = "0.8.0", optional = true }
rand = { version = "0.8.4", optional = true }
zeroize = { version = "1.4.3", optional = true }
byteorder = { version = "1.4.3", optional = true }
serde_json = "=1.0.61"
serde = { version = "=1.0.118", default-features = false, features = ["derive"] }
thiserror = "1.0.26"
[dev-dependencies]
tempfile = "3.2.0"
lazy_static = "1.4.0"
fake = "2.4.3"