[package]
edition = "2024"
rust-version = "1.85"
name = "phenotyper-cli"
version = "0.2.0"
authors = ["Hans Van Wesenbeeck <hvw@aivolution.ch>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for the Phenotyper compiler"
homepage = "https://github.com/a1v0lut10n/phenotyper"
readme = "README.md"
keywords = [
"dsl",
"compiler",
"cli",
"code-generation",
"phenotyper",
]
categories = [
"compilers",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/a1v0lut10n/phenotyper"
resolver = "2"
[[bin]]
name = "phenotyper"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.phenotyper]
version = "0.2.0"
features = ["json-diagnostics"]
[dependencies.serde_json]
version = "1"