-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathCargo.toml
35 lines (33 loc) · 896 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 = "gcsf"
description = "Filesystem based on Google Drive"
version = "0.2.3"
repository = "https://github.com/harababurel/gcsf"
authors = ["Sergiu Puscas <[email protected]>"]
license = "MIT"
keywords = ["google", "drive", "fuse", "filesystem"]
exclude = ["build/**/*.o", "doc/**/*.html", "client_secret.json", "/ci/*"]
edition = "2021"
[dependencies]
clap = { version = "2.33.0", features = ["yaml"] }
config = "0.13.3"
ctrlc = "3.4.0"
failure = "0.1.8"
fuser = "0.12"
futures = {version = "0.3.28", features = ["executor"]}
google-drive3 = "5.0.2"
id_tree = "1.8.0"
lazy_static = "1.4.0"
libc = "0.2.147"
log = "0.4.19"
lru_time_cache = "0.11.11"
maplit = "1.0.2"
mime-sniffer = "0.1.2"
pretty_env_logger = "0.5.0"
rand = "0.8.5"
serde = "1.0.174"
serde_derive = "1.0.174"
serde_json = "1.0.103"
time = "0.3.23"
tokio = { version = "1.29", features = ["full"] }
xdg = "2.5.2"