-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (43 loc) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (43 loc) · 1.19 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "small-bin"
version = "1.0.4"
edition = "2024"
rust-version = "1.90"
authors = ["Daniel Dettlaff <dmilith@me.com>"]
description = "Sync'eM ALL - File/ Screenshot sync application with SFTP support, and web dashboard."
repository = "https://github.com/verknowsys/Small"
license = "MIT"
[[bin]]
name = "small"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1.48", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
# File watching
notify = "8.2"
# SSH/SFTP
ssh2 = "0.9"
# Web server
warp = { version = "0.4", features = ["server"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Database
rusqlite = { version = "0.37", features = ["bundled", "backup", "modern_sqlite"] }
# UUID
uuid = { version = "1.18", features = ["v3", "v4"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Logging
tracing = { version = "0.1.41", features = ["log", "attributes", "std"] }
tracing-subscriber = { version = "0.3.20", features = ["registry", "fmt", "env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Configuration
toml = "0.9"
# Utils
regex = "1.12"
home = "0.5"
clippers = "0.1.2"
lazy_static = "1.5.0"