ruffle/video/external/Cargo.toml

30 lines
780 B
TOML
Raw Normal View History

2023-12-21 11:58:57 +00:00
[package]
name = "ruffle_video_external"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[dependencies]
ruffle_render = { path = "../../render" }
ruffle_video = { path = ".." }
swf = { path = "../../swf" }
slotmap = { workspace = true }
2024-02-22 20:08:31 +00:00
tracing = { workspace = true }
2023-12-21 11:58:57 +00:00
ruffle_video_software = { path = "../software" }
2024-02-22 20:08:31 +00:00
# Needed for OpenH264:
build(deps): bump the cargo-minor group across 1 directory with 4 updates Bumps the cargo-minor group with 4 updates in the / directory: [bytemuck](https://github.com/Lokathor/bytemuck), [syn](https://github.com/dtolnay/syn), [proc-macro2](https://github.com/dtolnay/proc-macro2) and [libloading](https://github.com/nagisa/rust_libloading). Updates `bytemuck` from 1.16.0 to 1.16.1 - [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/bytemuck/compare/v1.16.0...v1.16.1) Updates `syn` from 2.0.66 to 2.0.68 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.66...2.0.68) Updates `proc-macro2` from 1.0.85 to 1.0.86 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.85...1.0.86) Updates `libloading` from 0.8.3 to 0.8.4 - [Commits](https://github.com/nagisa/rust_libloading/compare/0.8.3...0.8.4) --- updated-dependencies: - dependency-name: bytemuck 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: libloading dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-06-24 20:35:39 +00:00
libloading = "0.8.4"
2024-02-22 20:08:31 +00:00
md-5 = "0.10.6"
reqwest = { version = "0.12.5", default-features = false, features = ["blocking"] }
2024-02-22 20:08:31 +00:00
hex = "0.4.3"
bzip2 = { version = "0.4.4", features = ["static"] }
[package.metadata.cargo-machete]
ignored = [
# Renames itself to "md5", see: https://github.com/bnjbvr/cargo-machete/issues/8
"md-5"
]