mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-10 00:48:44 -04:00
49 lines
1.6 KiB
TOML
49 lines
1.6 KiB
TOML
[package]
|
|
name = "matrix-sdk-sqlite"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
description = "Sqlite storage backend for matrix-sdk"
|
|
license = "Apache-2.0"
|
|
rust-version = { workspace = true }
|
|
|
|
[features]
|
|
default = ["state-store"]
|
|
testing = ["matrix-sdk-crypto?/testing"]
|
|
|
|
bundled = ["rusqlite/bundled"]
|
|
crypto-store = [
|
|
"dep:matrix-sdk-crypto",
|
|
"matrix-sdk-base/e2e-encryption",
|
|
]
|
|
state-store = []
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
deadpool-sqlite = "0.5.0"
|
|
itertools = { workspace = true }
|
|
matrix-sdk-base = { version = "0.6.0", path = "../matrix-sdk-base" }
|
|
matrix-sdk-crypto = { version = "0.6.0", path = "../matrix-sdk-crypto", optional = true }
|
|
matrix-sdk-store-encryption = { version = "0.2.0", path = "../matrix-sdk-store-encryption" }
|
|
rmp-serde = "1.1.1"
|
|
ruma = { workspace = true }
|
|
rusqlite = { version = "0.28.0", features = ["limits"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs"] }
|
|
tracing = { workspace = true }
|
|
vodozemac = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
ctor = { workspace = true }
|
|
glob = "0.3.0"
|
|
matrix-sdk-base = { path = "../matrix-sdk-base", features = ["testing"] }
|
|
matrix-sdk-crypto = { path = "../matrix-sdk-crypto", features = ["testing"] }
|
|
matrix-sdk-test = { path = "../../testing/matrix-sdk-test" }
|
|
once_cell = { workspace = true }
|
|
tempfile = "3.3.0"
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|