-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
38 lines (37 loc) · 1018 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
36
37
38
[package]
name = "onedrive-fuse"
version = "0.2.8"
edition = "2021"
repository = "https://github.com/oxalica/onedrive-fuse"
keywords = ["onedrive", "fuse"]
description = "Mount OneDrive storage as FUSE filesystem"
readme = "README.md"
license = "GPL-3.0-only"
exclude = ["doc"]
[dependencies]
anyhow = "1.0.28"
bytes = "1.0.1"
clap = { version = "4.0.32", features = ["derive"] }
config = { version = "0.14", default-features = false, features = ["toml"] }
dirs = "5.0.0"
env_logger = "0.11.0"
fuser = "0.14.0"
humantime = "2.0.1"
indexmap = "2"
libc = "0.2.69"
log = "0.4.8"
lru-cache = "0.1.2"
nix = { version = "0.29", features = ["fs", "user"] }
onedrive-api = "0.10"
open = "5"
reqwest = "0.12"
sd-notify = "0.4.1"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.51"
sharded-slab = "0.1.0"
static_assertions = "1.1.0"
tempfile = "3.1.0"
thiserror = "1.0.16"
tiny_http = "0.12.0"
tokio = { version = "1.0.2", features = ["macros", "rt-multi-thread", "sync", "time", "fs"] }
url = "2.3.1"