2023-08-31 08:40:40 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-storage"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-19 23:44:57 +00:00
|
|
|
flowy-storage-pub.workspace = true
|
2023-11-12 13:18:27 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
bytes.workspace = true
|
2023-12-30 23:29:40 +00:00
|
|
|
lib-infra = { workspace = true }
|
2023-09-01 14:27:29 +00:00
|
|
|
url = "2.2.2"
|
2024-06-19 23:44:57 +00:00
|
|
|
flowy-error = { workspace = true, features = ["impl_from_reqwest", "impl_from_sqlite"] }
|
|
|
|
tokio = { workspace = true, features = ["sync", "io-util"] }
|
2024-01-16 18:59:15 +00:00
|
|
|
tracing.workspace = true
|
2024-06-19 23:44:57 +00:00
|
|
|
flowy-sqlite.workspace = true
|
|
|
|
mime_guess = "2.0.4"
|
|
|
|
fxhash = "0.2.1"
|
|
|
|
anyhow = "1.0.86"
|
|
|
|
chrono = "0.4.33"
|
2024-07-22 07:43:48 +00:00
|
|
|
flowy-notification = { workspace = true }
|
|
|
|
flowy-derive.workspace = true
|
|
|
|
protobuf = { workspace = true }
|
2024-08-11 12:39:25 +00:00
|
|
|
dashmap.workspace = true
|
2024-06-19 23:44:57 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
uuid = "1.6.1"
|
|
|
|
rand = { version = "0.8", features = ["std_rng"] }
|
2024-07-22 07:43:48 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
dart = ["flowy-codegen/dart", "flowy-notification/dart"]
|
|
|
|
tauri_ts = ["flowy-codegen/ts", "flowy-notification/tauri_ts"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
flowy-codegen.workspace = true
|