-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (24 loc) · 737 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (24 loc) · 737 Bytes
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
[package]
name = "dbxup"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
tokio = { version = "1.41", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
dropbox-sdk = { version = "0.19", default-features = false, features = ["dbx_files", "dbx_users", "default_async_client"] }
walkdir = "2.5"
thiserror = "2.0"
futures = "0.3"
bytes = "1.11"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
base64 = "0.22"
notify = "6.1"
log = "0.4"
env_logger = "0.11"
hyper = { version = "1.8", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
url = "2.5"
urlencoding = "2.1"