ruffle/Cargo.toml

22 lines
587 B
TOML
Raw Normal View History

[package]
name = "swf"
version = "0.1.0"
2019-04-23 05:49:05 +00:00
edition = "2018"
authors = ["Mike Welsh"]
2016-08-30 21:32:04 +00:00
repository = "https://github.com/Herschel/swf-rs.git"
homepage = "https://github.com/Herschel/swf-rs.git"
2016-09-13 18:39:14 +00:00
license = "MIT OR Apache-2.0"
2016-08-30 21:32:04 +00:00
readme = "README.md"
description = "Read and write the Adobe Flash SWF file format."
[dependencies]
byteorder = "1.0"
2018-06-10 08:23:11 +00:00
num-derive = "0.2"
num-traits = "0.2"
libflate = {version = "0.1", optional = true}
flate2 = {version = "1.0", optional = true}
xz2 = {version = "0.1.5", optional = true}
2017-06-24 23:01:14 +00:00
[features]
default = ["libflate"]
lzma-support = ["xz2"]