chore: Delegate `[lints]` in `Cargo.toml` of all packages to the workspace

This commit is contained in:
TÖRÖK Attila 2024-01-04 22:30:32 +01:00
parent 60f01fd517
commit 217585daa8
25 changed files with 75 additions and 0 deletions

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
linkme = { version = "0.3", optional = true }
byteorder = "1.5"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
convert_case = "0.6.0"
proc-macro2 = "1.0.73"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[lib]
proc-macro = true

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
clap = { version = "4.4.12", features = ["derive"] }
cpal = "0.15.2"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
clap = { version = "4.4.12", features = ["derive"] }
futures = "0.3"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
ruffle_wstr = { path = "../wstr" }
swf = { path = "../swf"}

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
js-sys = "0.3.66"
log = "0.4"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
bitflags = "2.4.1"
naga = { workspace = true }

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
ruffle_render = { path = "../" }
naga = { workspace = true }

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
js-sys = "0.3.66"
log = "0.4"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
wgpu = { workspace = true, features = ["naga"] }
tracing = { workspace = true }

View File

@ -8,5 +8,8 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
gc-arena = { git = "https://github.com/kyren/gc-arena", rev = "efd89fc683c6bb456af3e226c33763cb822645e9", features = ["hashbrown"] }

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
clap = { version = "4.4.12", features = ["derive"] }
ruffle_core = { path = "../core", features = ["deterministic"] }

View File

@ -8,6 +8,9 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
bitflags = "2.4.1"
bitstream-io = "2.2.0"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[features]
# Enable running image comparison tests. This is off by default,
# since the images we compare against are generated on CI, and may

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
futures = "0.3.30"
ruffle_core = { path = "../../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.109"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = "1.0.78"
clap = { version = "4.4.12", features = ["derive"] }

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.109"

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
swf = { path = "../swf" }
ruffle_render = { path = "../render" }

View File

@ -7,6 +7,9 @@ license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
ruffle_render = { path = "../../render" }
ruffle_video = { path = ".." }

View File

@ -9,6 +9,9 @@ repository.workspace = true
version.workspace = true
publish = false # This crate is useless alone, people should use the npm package
[lints]
workspace = true
[lib]
crate-type = ["cdylib", "rlib"]

View File

@ -5,6 +5,9 @@ authors = ["Ruffle LLC <ruffle@ruffle.rs>"]
edition.workspace = true
license = "MIT OR Apache-2.0"
[lints]
workspace = true
[dependencies]
js-sys = "0.3.66"
tracing = { workspace = true }

View File

@ -9,5 +9,8 @@ repository.workspace = true
version.workspace = true
publish = false # This crate is useless unless packaged into an appex bundle
[lints]
workspace = true
[dependencies]
objc = "0.2.7"

View File

@ -6,3 +6,6 @@ homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true