2025-12-26 18:36:23 +00:00
|
|
|
[package]
|
|
|
|
|
name = "tools-shared"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["Tools Contributors"]
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
description = "Shared utilities for Tools ecosystem CLIs"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "tools_shared"
|
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
|
name = "config_discovery"
|
|
|
|
|
path = "examples/config_discovery.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = "1.0"
|
|
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
2026-02-22 22:01:02 +00:00
|
|
|
serde_json = { version = "1.0", optional = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
toml = { version = "0.9", optional = true }
|
2026-02-22 22:01:02 +00:00
|
|
|
tokio = { version = "1", features = ["process", "io-util"], optional = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
dirs = "6.0"
|
|
|
|
|
inquire = { version = "0.9", optional = true }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3.23"
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["config-discovery", "manifest"]
|
|
|
|
|
config-discovery = []
|
|
|
|
|
manifest = ["serde", "toml"]
|
|
|
|
|
interactive = ["inquire"]
|
2026-02-22 22:01:02 +00:00
|
|
|
nickel = ["dep:tokio", "dep:serde_json", "serde"]
|
2025-12-26 18:36:23 +00:00
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
|
name = "manifest_usage"
|
|
|
|
|
path = "examples/manifest_usage.rs"
|
|
|
|
|
required-features = ["manifest"]
|