cargo-features = ["panic-immediate-abort", "profile-rustflags"]
[[bin]]
name = "ort"
path = "src/main.rs"
[features]
print-allocations = []
[lib]
name = "ort_openrouter_cli"
path = "src/lib.rs"
[package]
authors = ["Graham King <graham@gkgk.org>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Open Router CLI"
edition = "2024"
license = "MIT"
name = "ort-openrouter-cli"
readme = "README.md"
repository = "https://github.com/grahamking/ort"
version = "0.3.3"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "immediate-abort"
rustflags = ["-Ctarget-cpu=native", "-Crelocation-model=static", "-Clink-args=-Wl,--build-id=none,--no-eh-frame-hdr", "-Cforce-frame-pointers=yes"]
strip = true
[[test]]
name = "full"
path = "tests/full.rs"