ruffle/swf/Cargo.toml

31 lines
701 B
TOML

[package]
name = "swf"
version = "0.1.2"
edition = "2018"
authors = ["Mike Welsh"]
repository = "https://github.com/ruffle-rs/ruffle"
homepage = "https://github.com/ruffle-rs/ruffle"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Read and write the Adobe Flash SWF file format."
[dependencies]
bitflags = "1.2.1"
bitstream-io = "1.0.0"
byteorder = "1.4"
encoding_rs = "0.8.26"
num-derive = "0.3"
num-traits = "0.2"
libflate = {version = "1.0", optional = true}
log = "0.4"
smallvec = "1.6.1"
flate2 = {version = "1.0", optional = true}
lzma-rs = {version = "0.1.3", optional = true }
[dev-dependencies]
approx = "0.4.0"
[features]
default = ["flate2", "lzma"]
lzma = ["lzma-rs"]