ruffle/frontend-utils/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "ruffle_frontend_utils"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
build(deps): bump the cargo-minor group with 4 updates Bumps the cargo-minor group with 4 updates: [proc-macro2](https://github.com/dtolnay/proc-macro2), [toml_edit](https://github.com/toml-rs/toml), [zip](https://github.com/zip-rs/zip2) and [toml](https://github.com/toml-rs/toml). Updates `proc-macro2` from 1.0.84 to 1.0.85 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.84...1.0.85) Updates `toml_edit` from 0.22.13 to 0.22.14 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.13...v0.22.14) Updates `zip` from 2.1.1 to 2.1.2 - [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.1...v2.1.2) Updates `toml` from 0.8.13 to 0.8.14 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14) --- updated-dependencies: - dependency-name: proc-macro2 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: zip 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-06-03 20:27:19 +00:00
toml_edit = { version = "0.22.14", features = ["parse"] }
2024-04-04 12:02:07 +00:00
url = { workspace = true }
tracing = { workspace = true }
thiserror = { workspace = true }
build(deps): bump the cargo-minor group with 6 updates Bumps the cargo-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.7` | | [url](https://github.com/servo/rust-url) | `2.5.0` | `2.5.1` | | [linkme](https://github.com/dtolnay/linkme) | `0.3.26` | `0.3.27` | | [regex](https://github.com/rust-lang/regex) | `1.10.4` | `1.10.5` | | [zip](https://github.com/zip-rs/zip2) | `2.1.2` | `2.1.3` | Updates `clap` from 4.5.4 to 4.5.7 - [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.4...v4.5.7) Updates `url` from 2.5.0 to 2.5.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.5.0...v2.5.1) Updates `linkme` from 0.3.26 to 0.3.27 - [Release notes](https://github.com/dtolnay/linkme/releases) - [Commits](https://github.com/dtolnay/linkme/compare/0.3.26...0.3.27) Updates `regex` from 1.10.4 to 1.10.5 - [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.4...1.10.5) Updates `zip` from 2.1.2 to 2.1.3 - [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.2...v2.1.3) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: linkme dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: quick-xml dependency-type: direct:production update-type: version-update:semver-minor 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 ... Signed-off-by: dependabot[bot] <support@github.com>
2024-06-10 20:11:00 +00:00
zip = { version = "2.1.3", default-features = false, features = ["deflate"]}
urlencoding = "2.1.3"
ruffle_core = { path = "../core", default-features = false }
ruffle_render = { path = "../render", default-features = false }
async-channel = { workspace = true }
slotmap = { workspace = true }
futures = { workspace = true }
async-io = "2.3.2"
async-net = "2.0.0"
futures-lite = "2.3.0"
webbrowser = "1.0.1"
reqwest = { version = "0.12.5", default-features = false, features = ["rustls-tls", "cookies", "charset", "http2", "macos-system-configuration"] }
tokio = { workspace = true }
[dev-dependencies]
tempfile = "3"
tokio = { workspace = true, features = ["macros", "rt"] }
macro_rules_attribute = "0.2.0"