-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1012 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (36 loc) · 1012 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "lilsync"
version = "0.4.1"
edition = "2024"
rust-version = "1.94.1"
description = "a little tool to sync your files"
license = "MIT"
repository = "https://github.com/vrypan/lilsync"
homepage = "https://github.com/vrypan/lilsync"
[[bin]]
name = "lilsync"
path = "src/main.rs"
[dependencies]
bincode = "1.3"
blake3 = "1.8.2"
clap = { version = "4.5.40", default-features = false, features = ["derive", "std", "color", "help", "usage", "error-context"] }
ed25519-dalek = "2"
getrandom = "0.2"
libc = "0.2.185"
if-addrs = "0.15"
notify = "8.2.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.145"
snow = "0.9.6"
tokio = { version = "1.48.0", features = ["rt-multi-thread", "macros", "io-util", "sync", "time", "net", "fs", "signal"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
tempfile = "3.20.0"
[profile.release]
lto = "thin"
strip = true
panic = "abort"
[profile.dist]
inherits = "release"
lto = "fat"