[package]
edition = "2021"
name = "rialo-api-types"
version = "0.4.2"
authors = ["Subzero Labs, Inc."]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "API types for Rialo RPC endpoints"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/SubzeroLabs/rialo"
resolver = "3"
[lib]
name = "rialo_api_types"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.bincode]
version = "1.3.3"
[dependencies.fastcrypto]
version = "0.1.9"
[dependencies.rialo-s-message]
version = "^0.4.2"
features = ["serde"]
[dependencies.rialo-s-sdk]
version = "^0.4.2"
[dependencies.rialo-shared-types]
version = "^0.4.2"
[dependencies.rialo-types]
version = "^0.4.2"
features = ["non-pdk"]
[dependencies.serde]
version = "1.0.219"
features = [
"derive",
"rc",
"derive",
]
[dependencies.serde_json]
version = "1.0.143"
features = [
"alloc",
"preserve_order",
"raw_value",
]
[dependencies.thiserror]
version = "1.0.69"
default-features = false
[dependencies.validator]
version = "0.19"
features = ["derive"]
[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)",
]