ruffle/core/Cargo.toml

99 lines
3.3 KiB
TOML
Raw Normal View History

2019-04-28 01:15:43 +00:00
[package]
2019-05-08 16:46:19 +00:00
name = "ruffle_core"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
2019-04-28 01:15:43 +00:00
[lints]
workspace = true
2019-04-28 01:15:43 +00:00
[dependencies]
linkme = { version = "0.3", optional = true }
2023-10-09 21:59:27 +00:00
byteorder = "1.5"
build(deps): bump the cargo-minor group across 1 directory with 8 updates Bumps the cargo-minor group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.31` | `1.0.33` | | [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.209` | | [bitstream-io](https://github.com/tuffy/bitstream-io) | `2.5.0` | `2.5.3` | | [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.127` | | [quote](https://github.com/dtolnay/quote) | `1.0.36` | `1.0.37` | | [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.76` | | [zip](https://github.com/zip-rs/zip2) | `2.1.6` | `2.2.0` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.6` | `0.12.7` | Updates `flate2` from 1.0.31 to 1.0.33 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/flate2-rs/compare/1.0.31...1.0.33) Updates `serde` from 1.0.208 to 1.0.209 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.209) Updates `bitstream-io` from 2.5.0 to 2.5.3 - [Commits](https://github.com/tuffy/bitstream-io/compare/v2.5.0...v2.5.3) Updates `serde_json` from 1.0.125 to 1.0.127 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/1.0.125...1.0.127) Updates `quote` from 1.0.36 to 1.0.37 - [Release notes](https://github.com/dtolnay/quote/releases) - [Commits](https://github.com/dtolnay/quote/compare/1.0.36...1.0.37) Updates `syn` from 2.0.75 to 2.0.76 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.75...2.0.76) Updates `zip` from 2.1.6 to 2.2.0 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.1.6...v2.2.0) Updates `reqwest` from 0.12.6 to 0.12.7 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.6...v0.12.7) --- updated-dependencies: - dependency-name: flate2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: bitstream-io dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: quote dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-08-26 11:40:47 +00:00
bitstream-io = "2.5.3"
flate2 = { workspace = true }
fnv = "1.0.7"
gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" }
slotmap = { workspace = true }
build(deps): bump the cargo-minor group with 4 updates Bumps the cargo-minor group with 4 updates: [bytemuck](https://github.com/Lokathor/bytemuck), [tokio](https://github.com/tokio-rs/tokio), [indexmap](https://github.com/indexmap-rs/indexmap) and [syn](https://github.com/dtolnay/syn). Updates `bytemuck` from 1.17.0 to 1.17.1 - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.17.0...v1.17.1) Updates `tokio` from 1.39.3 to 1.40.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) Updates `indexmap` from 2.4.0 to 2.5.0 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.4.0...2.5.0) Updates `syn` from 2.0.76 to 2.0.77 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.76...2.0.77) --- updated-dependencies: - dependency-name: bytemuck dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-09-02 12:43:21 +00:00
indexmap = "2.5.0"
tracing = { workspace = true }
ruffle_render = { path = "../render", features = ["tessellator"] }
ruffle_video = { path = "../video" }
ruffle_macros = { path = "macros" }
ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf" }
bitflags = { workspace = true }
2024-03-22 09:57:29 +00:00
smallvec = { version = "1.13.2", features = ["union"] }
num-traits = { workspace = true }
num-derive = { workspace = true }
build(deps): bump the cargo-minor group with 9 updates Bumps the cargo-minor group with 9 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.9` | `4.5.11` | | [tokio](https://github.com/tokio-rs/tokio) | `1.38.1` | `1.39.2` | | [quick-xml](https://github.com/tafia/quick-xml) | `0.36.0` | `0.36.1` | | [serde_json](https://github.com/serde-rs/json) | `1.0.120` | `1.0.121` | | [enumset](https://github.com/Lymia/enumset) | `1.1.4` | `1.1.5` | | [toml_edit](https://github.com/toml-rs/toml) | `0.22.16` | `0.22.17` | | [gilrs](https://gitlab.com/gilrs-project/gilrs) | `0.10.8` | `0.10.9` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.11.3` | `0.11.5` | | [toml](https://github.com/toml-rs/toml) | `0.8.15` | `0.8.16` | Updates `clap` from 4.5.9 to 4.5.11 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.9...clap_complete-v4.5.11) Updates `tokio` from 1.38.1 to 1.39.2 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.1...tokio-1.39.2) Updates `quick-xml` from 0.36.0 to 0.36.1 - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.36.0...v0.36.1) Updates `serde_json` from 1.0.120 to 1.0.121 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.120...v1.0.121) Updates `enumset` from 1.1.4 to 1.1.5 - [Changelog](https://github.com/Lymia/enumset/blob/main/RELEASES.md) - [Commits](https://github.com/Lymia/enumset/compare/v1.1.4...v1.1.5) Updates `toml_edit` from 0.22.16 to 0.22.17 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.16...v0.22.17) Updates `gilrs` from 0.10.8 to 0.10.9 - [Commits](https://gitlab.com/gilrs-project/gilrs/compare/v0.10.8...v0.10.9) Updates `env_logger` from 0.11.3 to 0.11.5 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.11.3...v0.11.5) Updates `toml` from 0.8.15 to 0.8.16 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.15...toml-v0.8.16) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: quick-xml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: enumset dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: gilrs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-29 13:43:02 +00:00
quick-xml = "0.36.1"
build(deps): bump the cargo-minor group with 6 updates Bumps the cargo-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [image](https://github.com/image-rs/image) | `0.25.0` | `0.25.1` | | [downcast-rs](https://github.com/marcianx/downcast-rs) | `1.2.0` | `1.2.1` | | [regress](https://github.com/ridiculousfish/regress) | `0.9.0` | `0.9.1` | | [syn](https://github.com/dtolnay/syn) | `2.0.55` | `2.0.58` | | [webbrowser](https://github.com/amodm/webbrowser-rs) | `0.8.13` | `0.8.14` | | [getrandom](https://github.com/rust-random/getrandom) | `0.2.12` | `0.2.14` | Updates `image` from 0.25.0 to 0.25.1 - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.25.0...v0.25.1) Updates `downcast-rs` from 1.2.0 to 1.2.1 - [Changelog](https://github.com/marcianx/downcast-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/marcianx/downcast-rs/compare/v1.2.0...v1.2.1) Updates `regress` from 0.9.0 to 0.9.1 - [Release notes](https://github.com/ridiculousfish/regress/releases) - [Commits](https://github.com/ridiculousfish/regress/compare/v0.9.0...v0.9.1) Updates `syn` from 2.0.55 to 2.0.58 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.55...2.0.58) Updates `webbrowser` from 0.8.13 to 0.8.14 - [Release notes](https://github.com/amodm/webbrowser-rs/releases) - [Changelog](https://github.com/amodm/webbrowser-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/amodm/webbrowser-rs/compare/v0.8.13...v0.8.14) Updates `getrandom` from 0.2.12 to 0.2.14 - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.14) --- updated-dependencies: - dependency-name: image dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: downcast-rs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: regress dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: webbrowser dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: getrandom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-08 20:55:16 +00:00
downcast-rs = "1.2.1"
2024-04-04 12:02:07 +00:00
url = { workspace = true }
weak-table = "0.3.2"
2023-11-27 01:12:39 +00:00
percent-encoding = "2.3.1"
thiserror = { workspace = true }
chrono = { workspace = true, features = ["clock"] }
web-time = "1.1.0"
build(deps): bump the cargo-minor group with 11 updates Bumps the cargo-minor group with 11 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.81` | `1.0.82` | | [async-channel](https://github.com/smol-rs/async-channel) | `2.2.0` | `2.2.1` | | [chrono](https://github.com/chronotope/chrono) | `0.4.37` | `0.4.38` | | [encoding_rs](https://github.com/hsivonen/encoding_rs) | `0.8.33` | `0.8.34` | | [fluent-templates](https://github.com/XAMPPRocky/fluent-templates) | `0.9.1` | `0.9.2` | | [either](https://github.com/rayon-rs/either) | `1.10.0` | `1.11.0` | | [quote](https://github.com/dtolnay/quote) | `1.0.35` | `1.0.36` | | [syn](https://github.com/dtolnay/syn) | `2.0.58` | `2.0.59` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.79` | `1.0.80` | | [webbrowser](https://github.com/amodm/webbrowser-rs) | `0.8.14` | `0.8.15` | | [libtest-mimic](https://github.com/LukasKalbertodt/libtest-mimic) | `0.7.0` | `0.7.2` | Updates `anyhow` from 1.0.81 to 1.0.82 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.81...1.0.82) Updates `async-channel` from 2.2.0 to 2.2.1 - [Release notes](https://github.com/smol-rs/async-channel/releases) - [Changelog](https://github.com/smol-rs/async-channel/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/async-channel/compare/v2.2.0...v2.2.1) Updates `chrono` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.37...v0.4.38) Updates `encoding_rs` from 0.8.33 to 0.8.34 - [Commits](https://github.com/hsivonen/encoding_rs/compare/v0.8.33...v0.8.34) Updates `fluent-templates` from 0.9.1 to 0.9.2 - [Release notes](https://github.com/XAMPPRocky/fluent-templates/releases) - [Changelog](https://github.com/XAMPPRocky/fluent-templates/blob/master/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/fluent-templates/compare/fluent-templates-v0.9.1...fluent-templates-v0.9.2) Updates `either` from 1.10.0 to 1.11.0 - [Commits](https://github.com/rayon-rs/either/compare/1.10.0...1.11.0) Updates `quote` from 1.0.35 to 1.0.36 - [Release notes](https://github.com/dtolnay/quote/releases) - [Commits](https://github.com/dtolnay/quote/compare/1.0.35...1.0.36) Updates `syn` from 2.0.58 to 2.0.59 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.58...2.0.59) Updates `proc-macro2` from 1.0.79 to 1.0.80 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.79...1.0.80) Updates `webbrowser` from 0.8.14 to 0.8.15 - [Release notes](https://github.com/amodm/webbrowser-rs/releases) - [Changelog](https://github.com/amodm/webbrowser-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/amodm/webbrowser-rs/compare/v0.8.14...v0.8.15) Updates `libtest-mimic` from 0.7.0 to 0.7.2 - [Release notes](https://github.com/LukasKalbertodt/libtest-mimic/releases) - [Changelog](https://github.com/LukasKalbertodt/libtest-mimic/blob/master/CHANGELOG.md) - [Commits](https://github.com/LukasKalbertodt/libtest-mimic/commits) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: async-channel dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: chrono dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: encoding_rs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: fluent-templates dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: either dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: quote dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: webbrowser dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: libtest-mimic dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-15 21:17:37 +00:00
encoding_rs = "0.8.34"
rand = { version = "0.8.5", features = ["std", "small_rng"], default-features = false }
serde = { workspace = true }
serde_json = { version = "1.0", features = ["preserve_order"] }
nellymoser-rs = { git = "https://github.com/ruffle-rs/nellymoser", rev = "754b1184037aa9952a907107284fb73897e26adc", optional = true }
build(deps): bump the cargo-minor group with 4 updates Bumps the cargo-minor group with 4 updates: [tokio](https://github.com/tokio-rs/tokio), [regress](https://github.com/ridiculousfish/regress), [fontdb](https://github.com/RazrFalcon/fontdb) and [zip](https://github.com/zip-rs/zip2). Updates `tokio` from 1.37.0 to 1.38.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.38.0) Updates `regress` from 0.9.1 to 0.10.0 - [Release notes](https://github.com/ridiculousfish/regress/releases) - [Commits](https://github.com/ridiculousfish/regress/compare/v0.9.1...v0.10.0) Updates `fontdb` from 0.17.0 to 0.18.0 - [Changelog](https://github.com/RazrFalcon/fontdb/blob/master/CHANGELOG.md) - [Commits](https://github.com/RazrFalcon/fontdb/compare/v0.17.0...v0.18.0) Updates `zip` from 2.1.0 to 2.1.1 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.1.0...v2.1.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: regress dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: fontdb dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-06-01 14:51:31 +00:00
regress = "0.10"
flash-lso = { git = "https://github.com/ruffle-rs/rust-flash-lso", rev = "98679aa0cdcad5fecc5c7321b2eac35b69dbcd5f" }
2023-01-10 15:16:37 +00:00
lzma-rs = {version = "0.3.0", optional = true }
dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "signal"], optional = true }
2024-03-01 11:53:55 +00:00
symphonia = { version = "0.5.4", default-features = false, features = ["mp3"], optional = true }
build(deps): bump the cargo-minor group with 9 updates Bumps the cargo-minor group with 9 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.9` | `4.5.11` | | [tokio](https://github.com/tokio-rs/tokio) | `1.38.1` | `1.39.2` | | [quick-xml](https://github.com/tafia/quick-xml) | `0.36.0` | `0.36.1` | | [serde_json](https://github.com/serde-rs/json) | `1.0.120` | `1.0.121` | | [enumset](https://github.com/Lymia/enumset) | `1.1.4` | `1.1.5` | | [toml_edit](https://github.com/toml-rs/toml) | `0.22.16` | `0.22.17` | | [gilrs](https://gitlab.com/gilrs-project/gilrs) | `0.10.8` | `0.10.9` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.11.3` | `0.11.5` | | [toml](https://github.com/toml-rs/toml) | `0.8.15` | `0.8.16` | Updates `clap` from 4.5.9 to 4.5.11 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.9...clap_complete-v4.5.11) Updates `tokio` from 1.38.1 to 1.39.2 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.1...tokio-1.39.2) Updates `quick-xml` from 0.36.0 to 0.36.1 - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.36.0...v0.36.1) Updates `serde_json` from 1.0.120 to 1.0.121 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.120...v1.0.121) Updates `enumset` from 1.1.4 to 1.1.5 - [Changelog](https://github.com/Lymia/enumset/blob/main/RELEASES.md) - [Commits](https://github.com/Lymia/enumset/compare/v1.1.4...v1.1.5) Updates `toml_edit` from 0.22.16 to 0.22.17 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.16...v0.22.17) Updates `gilrs` from 0.10.8 to 0.10.9 - [Commits](https://gitlab.com/gilrs-project/gilrs/compare/v0.10.8...v0.10.9) Updates `env_logger` from 0.11.3 to 0.11.5 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.11.3...v0.11.5) Updates `toml` from 0.8.15 to 0.8.16 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.15...toml-v0.8.16) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: quick-xml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: enumset dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: gilrs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-29 13:43:02 +00:00
enumset = "1.1.5"
bytemuck = { workspace = true }
2024-04-04 11:41:44 +00:00
clap = { workspace = true, optional=true }
realfft = "3.3.0"
build(deps): bump the cargo-minor group with 4 updates Bumps the cargo-minor group with 4 updates: [flate2](https://github.com/rust-lang/flate2-rs), [hashbrown](https://github.com/rust-lang/hashbrown), [gilrs](https://gitlab.com/gilrs-project/gilrs) and [zip](https://github.com/Pr0methean/zip). Updates `flate2` from 1.0.29 to 1.0.30 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Commits](https://github.com/rust-lang/flate2-rs/compare/1.0.29...1.0.30) Updates `hashbrown` from 0.14.3 to 0.14.5 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.3...v0.14.5) Updates `gilrs` from 0.10.6 to 0.10.7 - [Commits](https://gitlab.com/gilrs-project/gilrs/compare/v0.10.6...v0.10.7) Updates `zip` from 1.1.1 to 1.1.2 - [Release notes](https://github.com/Pr0methean/zip/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/Pr0methean/zip/compare/1.1.1...v1.1.2) --- updated-dependencies: - dependency-name: flate2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: hashbrown dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: gilrs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-29 20:53:43 +00:00
hashbrown = { version = "0.14.5", features = ["raw"] }
scopeguard = "1.2.0"
build(deps): bump the cargo-minor group with 9 updates Bumps the cargo-minor group with 9 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.15` | `4.5.16` | | [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.3` | `1.17.0` | | [serde](https://github.com/serde-rs/serde) | `1.0.207` | `1.0.208` | | [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.39.3` | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.3.0` | `2.4.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.124` | `1.0.125` | | [fluent-templates](https://github.com/XAMPPRocky/fluent-templates) | `0.9.4` | `0.10.1` | | [syn](https://github.com/dtolnay/syn) | `2.0.74` | `2.0.75` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.5` | `0.12.6` | Updates `clap` from 4.5.15 to 4.5.16 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.15...clap_complete-v4.5.16) Updates `bytemuck` from 1.16.3 to 1.17.0 - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.16.3...v1.17.0) Updates `serde` from 1.0.207 to 1.0.208 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.207...v1.0.208) Updates `tokio` from 1.39.2 to 1.39.3 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.39.3) Updates `indexmap` from 2.3.0 to 2.4.0 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.3.0...2.4.0) Updates `serde_json` from 1.0.124 to 1.0.125 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.124...1.0.125) Updates `fluent-templates` from 0.9.4 to 0.10.1 - [Release notes](https://github.com/XAMPPRocky/fluent-templates/releases) - [Changelog](https://github.com/XAMPPRocky/fluent-templates/blob/master/CHANGELOG.md) - [Commits](https://github.com/XAMPPRocky/fluent-templates/compare/fluent-templates-v0.9.4...fluent-templates-v0.10.1) Updates `syn` from 2.0.74 to 2.0.75 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.74...2.0.75) Updates `reqwest` from 0.12.5 to 0.12.6 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: bytemuck dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: fluent-templates dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-08-19 20:21:08 +00:00
fluent-templates = "0.10.1"
egui = { workspace = true, optional = true }
egui_extras = { git = "https://github.com/emilk/egui.git", rev = "f4697bc007447c6c2674beb4e25f599fb7afa093", default-features = false, optional = true }
2024-02-19 10:08:26 +00:00
png = { version = "0.17.13", optional = true }
2023-04-16 00:10:02 +00:00
flv-rs = { path = "../flv" }
async-channel = { workspace = true }
jpegxr = { git = "https://github.com/ruffle-rs/jpegxr", rev = "71dbe614c02c30a2e9fd1e9e2e7c7a749abe2798", optional = true }
2024-04-04 11:54:37 +00:00
image = { workspace = true, features = ["tiff"] }
enum-map = { workspace = true }
ttf-parser = "0.24"
num-bigint = "0.4"
unic-segment = "0.9.0"
build(deps): bump the cargo-minor group across 1 directory with 7 updates Bumps the cargo-minor group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.7` | `4.5.8` | | [bitflags](https://github.com/bitflags/bitflags) | `2.5.0` | `2.6.0` | | [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` | | [serde_json](https://github.com/serde-rs/json) | `1.0.117` | `1.0.120` | | [num-bigint](https://github.com/rust-num/num-bigint) | `0.4.5` | `0.4.6` | | [id3](https://github.com/polyfloyd/rust-id3) | `1.13.1` | `1.14.0` | | [either](https://github.com/rayon-rs/either) | `1.12.0` | `1.13.0` | Updates `clap` from 4.5.7 to 4.5.8 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.7...v4.5.8) Updates `bitflags` from 2.5.0 to 2.6.0 - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/2.5.0...2.6.0) Updates `log` from 0.4.21 to 0.4.22 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.21...0.4.22) Updates `serde_json` from 1.0.117 to 1.0.120 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.117...v1.0.120) Updates `num-bigint` from 0.4.5 to 0.4.6 - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.5...num-bigint-0.4.6) Updates `id3` from 1.13.1 to 1.14.0 - [Changelog](https://github.com/polyfloyd/rust-id3/blob/main/CHANGELOG.md) - [Commits](https://github.com/polyfloyd/rust-id3/compare/v1.13.1...v1.14.0) Updates `either` from 1.12.0 to 1.13.0 - [Commits](https://github.com/rayon-rs/either/compare/1.12.0...1.13.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: bitflags dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: num-bigint dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: id3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: either dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-01 22:51:23 +00:00
id3 = "1.14.0"
either = "1.13.0"
chardetng = "0.1.17"
tracy-client = { version = "0.17.1", optional = true, default-features = false }
2019-07-19 08:32:41 +00:00
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
workspace = true
[target.'cfg(target_family = "wasm")'.dependencies.wasm-bindgen-futures]
version = "0.4.43"
2019-07-19 08:32:41 +00:00
[features]
default = []
2021-06-22 08:26:27 +00:00
lzma = ["lzma-rs", "swf/lzma"]
avm_debug = []
tracy_avm = ["dep:tracy-client"]
deterministic = []
timeline_debug = []
2022-09-07 18:44:12 +00:00
mp3 = ["symphonia"]
nellymoser = ["nellymoser-rs"]
audio = ["dasp"]
known_stubs = ["linkme", "serde"]
default_compatibility_rules = []
2023-06-07 21:31:44 +00:00
egui = ["dep:egui", "dep:egui_extras", "png"]
jpegxr = ["dep:jpegxr", "lzma"]
default_font = []
test_only_as3 = []
serde = ["serde/derive"]
[build-dependencies]
build_playerglobal = { path = "build_playerglobal" }