ruffle/swf/Cargo.toml

28 lines
622 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
[dependencies]
2023-10-16 00:51:05 +00:00
bitflags = "2.4.1"
2023-11-13 00:25:49 +00:00
bitstream-io = "1.8.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 = "0.4"
num-traits = "0.2"
libflate = {version = "2.0", optional = true}
log = "0.4"
flate2 = {version = "1.0", optional = true}
2023-01-10 15:16:37 +00:00
lzma-rs = {version = "0.3.0", optional = true }
2023-11-20 01:54:50 +00:00
enum-map = "2.7.2"
simple_asn1 = "0.6.2"
[features]
default = ["flate2", "lzma"]
lzma = ["lzma-rs"]