mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
b64da2c02f
* chore: rename service * refactor: upload * chore: save upload meta data * chore: add sql test * chore: uploader * chore: fix upload * chore: cache file and remove after finish * chore: retry upload * chore: pause when netowork unreachable * chore: add event test * chore: add test * chore: clippy * chore: update client-api commit id * chore: fix flutter test
27 lines
684 B
TOML
27 lines
684 B
TOML
[package]
|
|
name = "flowy-storage"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
flowy-storage-pub.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
lib-infra = { workspace = true }
|
|
url = "2.2.2"
|
|
flowy-error = { workspace = true, features = ["impl_from_reqwest", "impl_from_sqlite"] }
|
|
tokio = { workspace = true, features = ["sync", "io-util"] }
|
|
tracing.workspace = true
|
|
flowy-sqlite.workspace = true
|
|
mime_guess = "2.0.4"
|
|
fxhash = "0.2.1"
|
|
anyhow = "1.0.86"
|
|
chrono = "0.4.33"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
uuid = "1.6.1"
|
|
rand = { version = "0.8", features = ["std_rng"] }
|