-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (59 loc) · 1.75 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (59 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "filo-rs"
version = "0.5.0"
authors = ["Kanishk <kanishk0422@gmail.com>"]
edition = "2021"
rust-version = "1.85"
description = "Your Downloads folder cleans itself — safely, predictably, and reversibly."
license = "MIT OR Apache-2.0"
readme = "readme.md"
repository = "https://github.com/Kanishk2207/filo"
homepage = "https://github.com/Kanishk2207/filo"
keywords = ["cli", "file", "organize", "downloads", "cleanup"]
categories = ["command-line-utilities", "filesystem"]
[lib]
name = "filo"
path = "src/lib.rs"
[[bin]]
name = "filo"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.102"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
clap = { version = "4.6", features = ["derive"] }
dialoguer = "0.12"
dirs = "6.0"
env_logger = "0.11"
indicatif = "0.18"
log = "0.4"
notify = "8.1"
serde = { version = "1.0.228", features = ["derive"] }
sha2 = "0.11"
thiserror = "2.0"
toml = "1.1"
walkdir = "2.5"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[profile.release]
lto = true
codegen-units = 1
strip = true
# cargo-wix (Windows .msi) settings. The dual MIT/Apache license isn't a single
# recognized token, so there's no EULA dialog — silence the warning about it.
[package.metadata.wix]
eula = false
[package.metadata.deb]
maintainer = "Kanishk <kanishk0422@gmail.com>"
copyright = "2026 Kanishk — MIT OR Apache-2.0"
license-file = ["LICENSE", "0"]
extended-description = """\
filo watches your Downloads (or any) folder and organizes files into \
predictable destinations by type and rules. Moves are safe, previewable, \
and reversible."""
depends = "$auto"
section = "utils"
priority = "optional"
assets = [
["target/release/filo", "usr/bin/", "755"],
["readme.md", "usr/share/doc/filo/README.md", "644"],
]