2023-08-31 08:40:40 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-storage"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2024-01-22 05:34:15 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2023-08-31 08:40:40 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
reqwest = { version = "0.11", features = ["json", "stream"] }
|
2023-11-12 13:18:27 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
bytes.workspace = true
|
2023-09-01 14:27:29 +00:00
|
|
|
mime_guess = "2.0"
|
2023-12-30 23:29:40 +00:00
|
|
|
lib-infra = { workspace = true }
|
2023-09-01 14:27:29 +00:00
|
|
|
url = "2.2.2"
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-error = { workspace = true, features = ["impl_from_reqwest"] }
|
2024-01-16 18:59:15 +00:00
|
|
|
mime = "0.3.17"
|
2024-01-22 05:34:15 +00:00
|
|
|
tokio = { workspace = true, features = ["sync", "io-util"]}
|
2024-01-16 18:59:15 +00:00
|
|
|
tracing.workspace = true
|
2024-01-20 15:16:18 +00:00
|
|
|
fxhash = "0.2.1"
|
2024-01-22 05:34:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
[features]
|
2024-01-29 21:36:27 +00:00
|
|
|
enable_wasm = []
|