ruffle/render/wgpu/Cargo.toml

49 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "ruffle_render_wgpu"
authors = ["Nathan Adams <dinnerbone@dinnerbone.com>"]
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
2024-01-09 23:01:58 +00:00
wgpu = { workspace = true, features = ["naga-ir"] }
tracing = { workspace = true }
ruffle_render = { path = "..", features = ["tessellator", "wgpu"] }
bytemuck = { workspace = true, features = ["derive"] }
2024-04-04 11:41:44 +00:00
clap = { workspace = true, optional = true }
enum-map = { workspace = true }
fnv = "1.0.7"
swf = { path = "../../swf" }
2024-04-04 11:54:37 +00:00
image = { workspace = true }
naga-agal = { path = "../naga-agal" }
naga-pixelbender = { path = "../naga-pixelbender" }
profiling = { version = "1.0", default-features = false, 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.11` | `4.5.13` | | [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.1` | `1.16.3` | | [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.30` | `1.0.31` | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.6` | `2.3.0` | | [serde_json](https://github.com/serde-rs/json) | `1.0.121` | `1.0.122` | | [regex](https://github.com/rust-lang/regex) | `1.10.5` | `1.10.6` | | [zip](https://github.com/zip-rs/zip2) | `2.1.5` | `2.1.6` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.10.1` | `3.11.0` | | [lru](https://github.com/jeromefroe/lru-rs) | `0.12.3` | `0.12.4` | Updates `clap` from 4.5.11 to 4.5.13 - [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.11...v4.5.13) Updates `bytemuck` from 1.16.1 to 1.16.3 - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.16.1...v1.16.3) Updates `flate2` from 1.0.30 to 1.0.31 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Commits](https://github.com/rust-lang/flate2-rs/commits) Updates `indexmap` from 2.2.6 to 2.3.0 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.2.6...2.3.0) Updates `serde_json` from 1.0.121 to 1.0.122 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.121...v1.0.122) Updates `regex` from 1.10.5 to 1.10.6 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.5...1.10.6) Updates `zip` from 2.1.5 to 2.1.6 - [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.5...v2.1.6) Updates `tempfile` from 3.10.1 to 3.11.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.10.1...v3.11.0) Updates `lru` from 0.12.3 to 0.12.4 - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.12.3...0.12.4) --- 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-patch dependency-group: cargo-minor - dependency-name: flate2 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: regex 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 - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: lru dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-08-05 14:50:30 +00:00
lru = "0.12.4"
naga = { 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.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
indexmap = "2.4.0"
# desktop
[target.'cfg(not(target_family = "wasm"))'.dependencies.futures]
workspace = true
# wasm
[target.'cfg(target_family = "wasm")'.dependencies.web-sys]
2024-08-18 13:57:07 +00:00
version = "0.3.70"
features = ["HtmlCanvasElement"]
[features]
render_debug_labels = []
webgl = ["wgpu/webgl"]
profile-with-tracy = ["profiling", "profiling/profile-with-tracy"]
[package.metadata.cargo-machete]
ignored = [
# Not used directly, declared only to enable its `profile-with-tracy` feature.
"profiling"
]