[package]
edition = "2024"
name = "bingle_cli"
version = "0.2.8"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line interface for Bingle: register handles, run nodes/relays, and trade BINGLE on Algorand."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/binglefoundation/bingle_rust"
[lib]
name = "bingle_cli"
path = "src/lib.rs"
[[bin]]
name = "bingle_cli"
path = "src/main.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.bingle_core]
version = "0.2.8"
[dependencies.bingle_local]
version = "0.2.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ctrlc]
version = "3"
features = ["termination"]
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.ntest]
version = "0.9"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.vergen]
version = "8"
features = [
"build",
"git",
"gitcl",
"cargo",
]
[lints.clippy]
assertions_on_constants = "allow"
bool_assert_comparison = "allow"
clone_on_copy = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
default_constructed_unit_structs = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
duplicate_mod = "allow"
empty_line_after_doc_comments = "allow"
empty_line_after_outer_attr = "allow"
expect_fun_call = "allow"
explicit_auto_deref = "allow"
field_reassign_with_default = "allow"
filter_next = "allow"
if_same_then_else = "allow"
items_after_test_module = "allow"
legacy_numeric_constants = "allow"
len_without_is_empty = "allow"
len_zero = "allow"
let_underscore_future = "allow"
let_unit_value = "allow"
manual_contains = "allow"
manual_range_contains = "allow"
manual_repeat_n = "allow"
manual_unwrap_or = "allow"
manual_unwrap_or_default = "allow"
match_like_matches_macro = "allow"
needless_borrow = "allow"
needless_range_loop = "allow"
needless_return = "allow"
new_without_default = "allow"
result_large_err = "allow"
same_item_push = "allow"
single_match = "allow"
to_string_in_format_args = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_get_then_check = "allow"
unnecessary_map_or = "allow"
unnecessary_to_owned = "allow"
unusual_byte_groupings = "allow"
useless_conversion = "allow"
useless_vec = "allow"