-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 863 Bytes
/
Cargo.toml
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
[package]
name = "linux-fs-tagger"
version = "0.2.0"
authors = ["AlteredOxide <[email protected]>"]
description = """
linux-fs-tagger is currently a very minimal (alpha) command-line tool for
creating and managing tags for directories and files within any file system that
supports extended attriubtes (xattrs).
All major linux file systems offer support:
- Ext4
- Btrfs
- ZFS
- XFS
This alpha offers very basic support for set, list, find, and remove.
"""
edition = "2021"
[profile.release]
opt-level = 3
debug = false
strip = "debuginfo"
lto = true
codegen-units = 1
[[bin]]
bench = false
path = "src/main.rs"
name = "tag"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.0", features = ["derive"] }
regex = "1.9.4"
walkdir = "2.3.3"
xattr = "1.0.1"