25 lines
632 B
TOML
25 lines
632 B
TOML
[package]
|
|
name = "workdir"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
http-client = ["dep:reqwest"]
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
fs-operation.workspace = true
|
|
manifest.workspace = true
|
|
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"], optional = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
sha2.workspace = true
|
|
tempfile.workspace = true
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["process", "rt", "sync", "time"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json.workspace = true
|
|
tempfile.workspace = true
|