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