[package]
edition = "2024"
rust-version = "1.87"
name = "rlx-cli"
version = "0.2.0"
authors = [
"Eugene Hauptmann",
"Nataliya Kosmyna",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared CLI helpers and multiplexer registry for RLX model binaries"
readme = false
license = "GPL-3.0-only"
repository = "https://github.com/MIT-RLX/rlx-models"
resolver = "2"
[features]
compat-net = ["dep:ureq"]
default = []
[lib]
name = "rlx_cli"
path = "src/lib.rs"
[[bin]]
name = "rlx-inspect"
path = "src/bin/rlx_inspect.rs"
[[test]]
name = "chat_templates"
path = "tests/chat_templates.rs"
[[test]]
name = "hf_repo_check_live"
path = "tests/hf_repo_check_live.rs"
[dependencies.anyhow]
version = "1"
[dependencies.minijinja]
version = "2"
features = [
"builtins",
"serde",
]
default-features = false
[dependencies.phf]
version = "0.11"
features = ["macros"]
[dependencies.rlx-core]
version = "0.2.0"
package = "rlx-models-core"
[dependencies.rlx-gguf]
version = "0.2.1"
[dependencies.rlx-runtime]
version = "0.2.1"
features = ["cpu"]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.ureq]
version = "~2.12"
features = ["json"]
optional = true
[dev-dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[lints.clippy]
manual_range_contains = "allow"
needless_range_loop = "allow"
too_many_arguments = "allow"
upper_case_acronyms = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust.unused]
level = "warn"
priority = 0