Drop the archived old/ tree, root AI notes, splashgame.md (Arcade lives in the private sandbox), widgets-dll leftovers, and LAN/oracle helper scripts. Move download_*.sh into tools/, and move sim/math out of libs/game/ so the public repo no longer has a game/ directory. Also quiet first-party compile noise and skip asset-ui tests that need sandbox kits or uncommitted fixtures.
21 lines
461 B
TOML
21 lines
461 B
TOML
[package]
|
|
name = "weezl"
|
|
version = "0.1.12"
|
|
edition = "2018"
|
|
authors = ["The image-rs Developers"]
|
|
description = "Fast LZW compression and decompression."
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/image-rs/weezl"
|
|
|
|
[features]
|
|
alloc = []
|
|
async = ["std"]
|
|
default = ["std"]
|
|
std = ["alloc"]
|
|
|
|
[lib]
|
|
name = "weezl"
|
|
path = "src/lib.rs"
|
|
# Vendored: skip upstream lib-tests that include_bytes missing benches/Cargo.lock.
|
|
test = false
|
|
doctest = false
|