ruffle/swf/Cargo.toml

27 lines
617 B
TOML
Raw Normal View History

[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]
byteorder = "1.3"
enumset = "1.0.1"
num-derive = "0.3"
num-traits = "0.2"
libflate = {version = "1.0", optional = true}
log = "0.4"
flate2 = {version = "1.0", optional = true}
2019-10-12 06:02:20 +00:00
xz2 = {version = "0.1.6", optional = true}
[dev-dependencies]
approx = "0.4.0"
[features]
2020-10-11 10:09:23 +00:00
default = ["flate2"]
2019-10-12 06:02:20 +00:00
lzma = ["xz2"]