diff --git a/Cargo.toml b/Cargo.toml index e75a6b730..73390db47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,12 @@ members = [ resolver = "2" [workspace.package] +authors = ["Ruffle LLC "] edition = "2021" +homepage = "https://ruffle.rs" +license = "MIT OR Apache-2.0" +repository = "https://github.com/ruffle-rs/ruffle" +version = "0.1.0" # Don't optimize build scripts and macros. [profile.release.build-override] diff --git a/core/Cargo.toml b/core/Cargo.toml index 26fe19c2d..4d047ebb9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_core" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] byteorder = "1.4" diff --git a/core/build_playerglobal/Cargo.toml b/core/build_playerglobal/Cargo.toml index 285d8b5ba..a811f0316 100644 --- a/core/build_playerglobal/Cargo.toml +++ b/core/build_playerglobal/Cargo.toml @@ -1,7 +1,11 @@ [package] name = "build_playerglobal" -version = "0.1.0" +authors.workspace = true edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] convert_case = "0.6.0" diff --git a/core/macros/Cargo.toml b/core/macros/Cargo.toml index e8032f660..61137feae 100644 --- a/core/macros/Cargo.toml +++ b/core/macros/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "ruffle_macros" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [lib] proc-macro = true diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index 67927f923..77f143a42 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_desktop" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] clap = { version = "4.0.27", features = ["derive"] } diff --git a/exporter/Cargo.toml b/exporter/Cargo.toml index f8469fba2..46e170a73 100644 --- a/exporter/Cargo.toml +++ b/exporter/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "exporter" -version = "0.1.0" authors = ["Nathan Adams "] edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] clap = { version = "4.0.27", features = ["derive"] } diff --git a/render/Cargo.toml b/render/Cargo.toml index ca97241ad..dbb0abb5b 100644 --- a/render/Cargo.toml +++ b/render/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_render" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] swf = { path = "../swf"} diff --git a/render/canvas/Cargo.toml b/render/canvas/Cargo.toml index 3bb90dd5c..f30b17ce1 100644 --- a/render/canvas/Cargo.toml +++ b/render/canvas/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_render_canvas" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] js-sys = "0.3.60" diff --git a/render/naga-agal/Cargo.toml b/render/naga-agal/Cargo.toml index 2af3f25c5..524455dd4 100644 --- a/render/naga-agal/Cargo.toml +++ b/render/naga-agal/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "naga-agal" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] bitflags = "1.3.2" diff --git a/render/webgl/Cargo.toml b/render/webgl/Cargo.toml index 993f7509b..ac2e9e4cf 100644 --- a/render/webgl/Cargo.toml +++ b/render/webgl/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_render_webgl" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] js-sys = "0.3.60" diff --git a/render/wgpu/Cargo.toml b/render/wgpu/Cargo.toml index d2e9b7978..0f4440866 100644 --- a/render/wgpu/Cargo.toml +++ b/render/wgpu/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_render_wgpu" -version = "0.1.0" authors = ["Nathan Adams "] edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] wgpu = { version = "0.14.2", features = ["naga"] } diff --git a/scanner/Cargo.toml b/scanner/Cargo.toml index ae5ebcdfd..3733ffbc5 100644 --- a/scanner/Cargo.toml +++ b/scanner/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_scanner" -version = "0.1.0" authors = ["Nathan Adams "] edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] clap = { version = "4.0.27", features = ["derive"] } diff --git a/swf/Cargo.toml b/swf/Cargo.toml index f78df847b..eecb51922 100644 --- a/swf/Cargo.toml +++ b/swf/Cargo.toml @@ -1,13 +1,12 @@ [package] name = "swf" version = "0.2.0" -edition.workspace = true -authors = ["Ruffle LLC "] -repository = "https://github.com/ruffle-rs/ruffle" -homepage = "https://github.com/ruffle-rs/ruffle" -license = "MIT OR Apache-2.0" -readme = "README.md" 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] bitflags = "1.3.2" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 967fd0104..48b11da8a 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "tests" -version = "0.1.0" authors = ["Aaron Hill "] edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] futures = "0.3.25" diff --git a/tests/input-format/Cargo.toml b/tests/input-format/Cargo.toml index ddfdb712d..1136ffb67 100644 --- a/tests/input-format/Cargo.toml +++ b/tests/input-format/Cargo.toml @@ -1,7 +1,11 @@ [package] name = "ruffle_input_format" -version = "0.1.0" +authors.workspace = true edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] serde = { version = "1.0.150", features = ["derive"] } diff --git a/video/Cargo.toml b/video/Cargo.toml index 0d5b7d57f..1747fc484 100644 --- a/video/Cargo.toml +++ b/video/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_video" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] swf = { path = "../swf" } diff --git a/video/software/Cargo.toml b/video/software/Cargo.toml index 84e061dcd..0a7b7ed85 100644 --- a/video/software/Cargo.toml +++ b/video/software/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_video_software" -version = "0.1.0" -authors = ["Ruffle LLC "] +authors.workspace = true edition.workspace = true -license = "MIT OR Apache-2.0" +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] ruffle_render = { path = "../../render" } diff --git a/web/Cargo.toml b/web/Cargo.toml index bc85cb167..5b7ac4be8 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -1,13 +1,12 @@ [package] name = "ruffle_web" -version = "0.1.0" -authors = ["Mike Welsh "] -edition.workspace = true -license = "MIT OR Apache-2.0" description = "Web (WASM) bindings to the Ruffle flash player" -readme = "README.md" -homepage = "https://ruffle.rs" -repository = "https://github.com/ruffle-rs/ruffle/" +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true publish = false # This crate is useless alone, people should use the npm package [lib] diff --git a/web/packages/extension/safari/Cargo.toml b/web/packages/extension/safari/Cargo.toml index 53c6e1502..a4b5bddc0 100644 --- a/web/packages/extension/safari/Cargo.toml +++ b/web/packages/extension/safari/Cargo.toml @@ -1,13 +1,12 @@ [package] name = "ruffle_web_safari" -version = "0.1.0" -authors = ["Mike Welsh "] -edition.workspace = true -license = "MIT OR Apache-2.0" description = "Native binary for the Safari Web Extension" -readme = "README.md" -homepage = "https://ruffle.rs" -repository = "https://github.com/ruffle-rs/ruffle/" +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true publish = false # This crate is useless unless packaged into an appex bundle [dependencies] diff --git a/wstr/Cargo.toml b/wstr/Cargo.toml index 914823c79..07b92db1a 100644 --- a/wstr/Cargo.toml +++ b/wstr/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "ruffle_wstr" -version = "0.1.0" -edition.workspace = true authors = ["Arthur Heuillard "] -license = "MIT OR Apache-2.0" +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +version.workspace = true [dependencies] static_assertions = "1.1.0"