[package]
edition = "2021"
rust-version = "1.75"
name = "v_utils_macros"
version = "2.11.26"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for my utils crate"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Valera6/v_utils"
resolver = "1"
[features]
cli = []
default = ["cli"]
full = [
"cli",
"xdg",
]
xdg = []
[lib]
name = "v_utils_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "derive_settings"
path = "tests/derive_settings.rs"
[[test]]
name = "diff_from_defaults"
path = "tests/diff_from_defaults.rs"
[[test]]
name = "from_vec_str"
path = "tests/from_vec_str.rs"
[[test]]
name = "graphemics"
path = "tests/graphemics.rs"
[[test]]
name = "init_compact"
path = "tests/init_compact.rs"
[[test]]
name = "live_settings"
path = "tests/live_settings.rs"
[[test]]
name = "make_df"
path = "tests/make_df.rs"
[[test]]
name = "my_config_primitives"
path = "tests/my_config_primitives.rs"
[[test]]
name = "scream_it"
path = "tests/scream_it.rs"
[[test]]
name = "settings_no_default"
path = "tests/settings_no_default.rs"
[[test]]
name = "test_unknown_field_warning"
path = "tests/test_unknown_field_warning.rs"
[[test]]
name = "tests"
path = "tests/main.rs"
[[test]]
name = "wrap_new"
path = "tests/wrap_new.rs"
[dependencies.eyre]
version = "^0.6.12"
[dependencies.heck]
version = "^0.5.0"
[dependencies.proc-macro2]
version = "^1.0.105"
features = ["span-locations"]
[dependencies.quote]
version = "^1.0.43"
[dependencies.serde]
version = "^1.0.228"
features = ["derive"]
[dependencies.syn]
version = "^2.0.114"
features = [
"full",
"extra-traits",
]
[dev-dependencies.clap]
version = "^4.5.54"
features = ["derive"]
[dev-dependencies.insta]
version = "^1.46.0"
[dev-dependencies.polars]
version = "0.52.0"
features = ["fmt"]
default-features = false
[dev-dependencies.secrecy]
version = "^0.10.3"
[dev-dependencies.serde_json]
version = "^1.0.149"
[dev-dependencies.toml]
version = "^0.9"
[dev-dependencies.trybuild]
version = "^1.0.114"
features = ["diff"]