[package]
edition = "2021"
name = "rialoman"
version = "0.3.0"
authors = ["Subzero Labs <build@subzero.xyz>"]
build = false
exclude = [
"docs",
"scripts",
"examples",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rialo native toolchain manager"
readme = "README.md"
license = "Apache-2.0"
resolver = "3"
[lib]
name = "rialoman"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "rialoman"
path = "src/main.rs"
test = false
[[test]]
name = "migration"
path = "tests/migration.rs"
[dependencies.anyhow]
version = "1.0.99"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"wrap_help",
"derive",
"wrap_help",
"env",
]
[dependencies.dirs]
version = "6.0.0"
[dependencies.flate2]
version = "1.1.2"
[dependencies.hex]
version = "0.4.3"
[dependencies.indicatif]
version = "0.18.0"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.regex]
version = "1.11.2"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"http2",
"json",
"rustls-tls",
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.rialo-build-lib]
version = "^0.3.0"
[dependencies.serde]
version = "1.0.219"
features = [
"derive",
"rc",
"derive",
]
[dependencies.serde_json]
version = "1.0.143"
features = [
"alloc",
"preserve_order",
"raw_value",
]
[dependencies.sha2]
version = "0.10.9"
[dependencies.tar]
version = "0.4.44"
[dependencies.tempfile]
version = "3.22.0"
[lints.clippy]
all = "warn"
debug_assert_with_mut_call = "warn"
empty_enums = "warn"
exit = "warn"
expl_impl_clone_on_copy = "warn"
fallible_impl_from = "warn"
filter_map_next = "warn"
float_cmp_const = "warn"
imprecise_flops = "warn"
invalid_upcast_comparisons = "warn"
large_digit_groups = "warn"
large_stack_arrays = "warn"
large_types_passed_by_value = "warn"
linkedlist = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
mutex_integer = "warn"
option_option = "warn"
path_buf_push_overwrite = "warn"
ptr_as_ptr = "warn"
rc_mutex = "warn"
ref_option_ref = "warn"
rest_pat_in_fully_bound_structs = "warn"
same_functions_in_if_condition = "warn"
string_add_assign = "warn"
trait_duplication_in_bounds = "warn"
zero_sized_map_values = "warn"
[lints.rust]
future_incompatible = "warn"
nonstandard_style = "warn"
rust_2018_idioms = "warn"
unsafe_code = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
'cfg(target_feature, values("static-syscalls"))',
'cfg(target_os, values("solana"))',
'cfg(feature, values("frozen-abi", "no-entrypoint", "custom-panic", "custom-heap"))',
"cfg(msim)",
"cfg(fail_points)",
"cfg(rialo_simtest_seed_sweep)",
]