btt 0.3.0

Binary to text encodings
Documentation
[[bench]]
name = "main"
path = "benches/main/main.rs"

[dev-dependencies.base64]
version = "0.22"

[features]
alloc = []
default = ["alloc"]

[lib]
name = "btt"
path = "src/lib.rs"

[lints.clippy]
cast_lossless = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
cast_sign_loss = "warn"
elidable_lifetime_names = "warn"
ignored_unit_patterns = "warn"
large_stack_arrays = "warn"
large_stack_frames = "warn"
large_types_passed_by_value = "warn"
lossy_float_literal = "warn"
missing_fields_in_debug = "warn"
ptr_as_ptr = "warn"

[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
ambiguous_negative_literals = "warn"
macro-use-extern-crate = "warn"
meta-variable-misuse = "warn"
missing-abi = "warn"
missing-copy-implementations = "warn"
missing-debug-implementations = "warn"
non-ascii-idents = "warn"
noop-method-call = "warn"
redundant-imports = "warn"
redundant-lifetimes = "warn"
single-use-lifetimes = "warn"
trivial-numeric-casts = "warn"
unit-bindings = "warn"
unnameable-types = "warn"
unreachable-pub = "warn"
unused-lifetimes = "warn"
unused-qualifications = "warn"
unused-results = "warn"

[lints.rust.deprecated-safe]
level = "warn"
priority = -1

[lints.rust.future-incompatible]
level = "warn"
priority = -1

[lints.rust.keyword-idents]
level = "warn"
priority = -1

[lints.rust.rust-2018-compatibility]
level = "warn"
priority = -1

[lints.rust.rust-2018-idioms]
level = "warn"
priority = -1

[lints.rust.rust-2021-compatibility]
level = "warn"
priority = -1

[lints.rust.rust-2024-compatibility]
level = "warn"
priority = -1

[lints.rust.unused]
level = "warn"
priority = -1

[package]
authors = ["Daniel Reisinger <daniel@reisinger.xyz>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Binary to text encodings"
edition = "2024"
license = "ISC"
name = "btt"
readme = false
repository = "https://github.com/danielreisinger/btt"
version = "0.3.0"

[[test]]
name = "main"
path = "tests/main/main.rs"