-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 971 Bytes
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 971 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
42
43
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.90.0"
description = "A real-time folder synchronization tool, inspired by Syncthing."
documentation = "https://docs.rs/synchron"
readme = "README.md"
homepage = "https://github.com/SOV710/synchron"
repository = "https://github.com/SOV710/synchron"
license = "MIT"
keywords = ["files", "filesync", "realtime", "sync"]
categories = ["accessibility", "asynchronous", "command-line-utilities"]
[workspace.dependencies]
clap = { version = "4.5", features = ["derive"] }
crossbeam-channel = "0.5"
ignore = "0.4"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simplelog = "0.12"
thiserror = "2"
time = "0.3"
tokio = { version = "1", features = [
"fs",
"io-util",
"macros",
"net",
"process",
"rt",
"rt-multi-thread",
"sync",
"time",
] }
[profile.release]
strip = "symbols"
lto = "thin"
codegen-units = 1