2023-07-26 01:09:56 +02:00
|
|
|
[package]
|
2023-08-02 23:09:45 +02:00
|
|
|
name = "mattress"
|
2023-08-02 22:43:27 +02:00
|
|
|
description = "A command line tool for working with Linux extended attributes (xattrs)"
|
2023-08-03 05:29:56 +02:00
|
|
|
version = "0.2.1"
|
2023-07-26 01:09:56 +02:00
|
|
|
edition = "2021"
|
2023-08-02 23:09:45 +02:00
|
|
|
default-run = "mtr"
|
2023-08-02 22:43:27 +02:00
|
|
|
license = "GPL-3.0"
|
2023-08-03 03:57:36 +02:00
|
|
|
build = "build.rs"
|
2023-07-26 01:09:56 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { version = "4.3.19", features = ["derive"] }
|
2023-07-30 03:00:35 +02:00
|
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
|
|
serde_json = "1.0.96"
|
2023-08-03 01:47:25 +02:00
|
|
|
walkdir = "2.3.3"
|
2023-07-26 01:09:56 +02:00
|
|
|
xattr = { version = "1.0.0", default-features = false }
|
2023-07-29 00:37:53 +02:00
|
|
|
|
2023-08-03 03:57:36 +02:00
|
|
|
[build-dependencies]
|
|
|
|
clap = { version = "4.3.19", features = ["derive"] }
|
|
|
|
clap_complete = "4.3.2"
|
|
|
|
|
2023-07-29 00:37:53 +02:00
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
opt-level = "z"
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|