Files
matrix-rust-sdk/crates/matrix-sdk-search/Cargo.toml
2025-09-04 16:05:48 +02:00

35 lines
872 B
TOML

[package]
authors = ["Shrey Patel <shreyrg14@gmail.com>"]
description = "The search component to build a Matrix client library."
edition = "2024"
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
license = "Apache-2.0"
name = "matrix-sdk-search"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
rust-version.workspace = true
version = "0.14.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
[dependencies]
tantivy = "0.25.0"
ruma = { workspace = true , features = [
"client-api-c",
"events",
"rand",
"unstable-msc1767"
] }
tracing = { workspace = true, features = ["attributes"] }
thiserror.workspace = true
matrix-sdk-test = { workspace = true, optional = true }
[dev-dependencies]
matrix-sdk-test.workspace = true
[lints]
workspace = true