1[package]
2name = "atpfs"
3version = "0.1.0"
4edition = "2021"
5
6[dependencies]
7bpaf = { version = "0.9", features = ["derive"] }
8anyhow = "1.0"
9scc = "2.1"
10url = "2.5"
11futures = "0.3"
12async-trait = "0.1"
13serde = { version = "1.0", features = ["derive"] }
14serde_json = "1.0"
15jacquard = { git = "https://tangled.org/nonbinary.computer/jacquard", default-features = false, features = ["api", "cache"] }
16
17[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
18tokio = { version = "1.0", features = ["full"] }
19
20[target.'cfg(target_os = "linux")'.dependencies]
21easy_fuser = { version = "0.4", features = ["parallel"] }
22libc = "0.2"