ruffle/swf/Cargo.toml

31 lines
706 B
TOML
Raw Normal View History

[package]
name = "swf"
2022-08-15 02:50:39 +00:00
version = "0.2.0"
description = "Read and write the Adobe Flash SWF file format."
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
bitflags = { workspace = true }
2023-12-18 06:16:34 +00:00
bitstream-io = "2.2.0"
2023-10-09 21:59:27 +00:00
byteorder = "1.5"
2023-08-28 01:21:01 +00:00
encoding_rs = "0.8.33"
num-derive = { workspace = true }
num-traits = "0.2"
libflate = {version = "2.0", optional = true}
2024-04-04 11:56:55 +00:00
log = { workspace = true }
flate2 = { workspace = true, optional = true}
2023-01-10 15:16:37 +00:00
lzma-rs = {version = "0.3.0", optional = true }
enum-map = { workspace = true }
simple_asn1 = "0.6.2"
[features]
default = ["flate2", "lzma"]
lzma = ["lzma-rs"]