-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 loc) · 833 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "lunchbox"
version = "0.1.4"
edition = "2021"
authors = ["Vivek Panyam <hello@vivekpanyam.com>"]
description = "An async virtual filesystem interface."
license = "Apache-2.0"
repository = "https://github.com/vivekpanyam/lunchbox"
keywords = ["filesystem", "virtual", "vfs", "async", "abstraction"]
categories = ["filesystem", "asynchronous"]
[lib]
# For now
doctest = false
[dependencies]
tokio = { version = "1" }
async-trait = "0.1"
thiserror = "1.0"
relative-path = "1.7"
path-clean = "0.1"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
tempfile = "3.3.0"
[features]
# All features
full = ["localfs", "serde"]
# All features that are compatible with wasm
full-wasm = ["serde"]
localfs = ["tokio/fs", "tokio/io-util", "tokio/rt", "tokio/macros"]
serde = ["dep:serde"]