[package]
edition = "2021"
name = "phyllotaxis"
version = "0.3.1"
build = false
exclude = [
".beads/",
".claude/",
".develop/",
".github/",
".vscode/",
"assets/",
"docs/",
"releases/",
"specs/",
"AGENTS.md",
"CLAUDE.md",
"VERSIONING.md",
"deny.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Progressive disclosure CLI for OpenAPI documents — explore one layer at a time"
readme = "README.md"
keywords = [
"cli",
"openapi",
"api",
"spec",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/OpenScribbler/phyllotaxis"
[lib]
name = "phyllotaxis"
path = "src/lib.rs"
[[bin]]
name = "phyll"
path = "src/main.rs"
[[bin]]
name = "phyllotaxis"
path = "src/main.rs"
[[test]]
name = "fixture_sanity"
path = "tests/fixture_sanity.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dirs-next]
version = "2"
[dependencies.human-panic]
version = "2"
[dependencies.indexmap]
version = "2.13.0"
[dependencies.openapiv3]
version = "2.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.strsim]
version = "0.11"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
overflow-checks = true
strip = true