[package]
edition = "2024"
rust-version = "1.90.0"
name = "beamterm-data"
version = "1.0.0"
authors = ["Adrian Papari <junkdog@angelhill.net>"]
build = false
include = [
"src/**/*.rs",
"atlas/bitmap_font.atlas",
"Cargo.toml",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core data structures and binary serialization for the beamterm WebGL terminal renderer"
homepage = "https://github.com/junkdog/beamterm"
documentation = "https://docs.rs/beamterm"
readme = "README.md"
keywords = [
"terminal",
"webgl",
"wasm",
"rendering",
"gpu",
]
categories = [
"graphics",
"wasm",
"web-programming",
]
license = "MIT"
repository = "https://github.com/junkdog/beamterm"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
default-target = "wasm32-unknown-unknown"
[lib]
name = "beamterm_data"
path = "src/lib.rs"
[dependencies.compact_str]
version = "0.9.0"
[dependencies.miniz_oxide]
version = "0.9.0"
[dependencies.thiserror]
version = "2.0.18"
[lints.clippy]
cloned_instead_of_copied = "warn"
collection_is_never_read = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
flat_map_option = "warn"
from_iter_instead_of_collect = "warn"
implicit_clone = "warn"
inefficient_to_string = "warn"
large_enum_variant = "warn"
large_types_passed_by_value = "warn"
linkedlist = "warn"
manual_let_else = "warn"
manual_string_new = "warn"
map_unwrap_or = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
must_use_candidate = "warn"
needless_collect = "warn"
needless_pass_by_value = "warn"
needless_return = "warn"
rc_buffer = "warn"
redundant_allocation = "warn"
redundant_closure_for_method_calls = "warn"
return_self_not_must_use = "warn"
semicolon_if_nothing_returned = "warn"
string_add_assign = "warn"
trivially_copy_pass_by_ref = "warn"
type_complexity = "warn"
uninlined_format_args = "warn"
unused_self = "warn"
vec_init_then_push = "warn"
[lints.rust]
dead_code = "warn"
missing_docs = "warn"
unused_imports = "deny"
unused_variables = "deny"