[package]
edition = "2024"
name = "vela-cli"
version = "0.102.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The vela command-line tool: build, check, sign, replay, and publish scientific frontier state."
homepage = "https://github.com/vela-science/vela"
readme = "README.md"
keywords = [
"science",
"frontier",
"protocol",
"cli",
"replay",
]
categories = [
"science",
"command-line-utilities",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/vela-science/vela"
[[bin]]
name = "vela"
path = "src/main.rs"
[dependencies.axum]
version = "0.8"
[dependencies.colored]
version = "3"
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"fs",
]
[dependencies.vela-atlas]
version = "0.102.0"
[dependencies.vela-constellation]
version = "0.102.0"
[dependencies.vela-protocol]
version = "0.102.0"
[dependencies.vela-scientist]
version = "0.102.0"
[lints.clippy]
cloned_ref_to_slice_refs = "allow"
collapsible_match = "allow"
doc_lazy_continuation = "allow"
double_must_use = "allow"
empty_line_after_doc_comments = "allow"
large_enum_variant = "allow"
nonminimal_bool = "allow"
ptr_arg = "allow"
too_many_arguments = "allow"
unnecessary_sort_by = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"