AppFlowy/frontend/rust-lib/flowy-search/Cargo.toml
Nathan.fooo 3a9de61599
chore: update yrs version (#5262)
* chore: update yrs version

* chore: update client api
2024-05-06 11:30:13 +08:00

54 lines
1.3 KiB
TOML

[package]
name = "flowy-search"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
collab = { workspace = true }
collab-folder = { workspace = true }
flowy-derive.workspace = true
flowy-error = { workspace = true, features = [
"impl_from_sqlite",
"impl_from_dispatch_error",
"impl_from_collab_document",
"impl_from_tantivy",
"impl_from_serde",
] }
flowy-notification.workspace = true
flowy-sqlite.workspace = true
flowy-user.workspace = true
flowy-search-pub.workspace = true
bytes.workspace = true
futures.workspace = true
lib-dispatch.workspace = true
protobuf.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["full", "rt-multi-thread", "tracing"] }
tracing.workspace = true
async-stream = "0.3.4"
strsim = "0.11.0"
strum_macros = "0.26.1"
tantivy = { version = "0.21.1" }
tempfile = "3.9.0"
validator = { version = "0.16.0", features = ["derive"] }
diesel.workspace = true
diesel_derives = { version = "2.1.0", features = ["sqlite", "r2d2"] }
diesel_migrations = { version = "2.1.0", features = ["sqlite"] }
[build-dependencies]
flowy-codegen.workspace = true
[dev-dependencies]
tempfile = "3.10.0"
[features]
dart = ["flowy-codegen/dart"]
tauri_ts = ["flowy-codegen/ts"]