Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ num-traits = "0.2.19"
serde = "1.0.228"
thiserror = "2.0.17"
url = "2.5.7"
quick-xml = "0.37.5"
regress = { git = "https://github.com/ruffle-rs/regras3", rev = "5fcb02513c5ab4e00df4346459f5a8d0521d8fed" }
# Make sure to match wasm-bindgen-cli version to this everywhere.
wasm-bindgen = "=0.2.101"
walkdir = "2.5.0"
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ bitflags = { workspace = true }
smallvec = { workspace = true }
num-traits = { workspace = true }
num-derive = { workspace = true }
quick-xml = "0.37.5"
quick-xml = { workspace = true }
url = { workspace = true }
weak-table = "0.3.2"
percent-encoding = { workspace = true }
Expand All @@ -42,7 +42,7 @@ rand = { version = "0.9.1", features = ["std", "os_rng"], default-features = fal
serde = { workspace = true }
serde_json = { workspace = true, features = ["preserve_order"] }
nellymoser-rs = { git = "https://github.com/ruffle-rs/nellymoser", rev = "073eb48d907201f46dea0c8feb4e8d9a1d92208c", optional = true }
regress = { git = "https://github.com/ruffle-rs/regras3", rev = "5fcb02513c5ab4e00df4346459f5a8d0521d8fed" }
regress = { workspace = true }
flash-lso = { git = "https://github.com/ruffle-rs/rust-flash-lso", rev = "998f47c926b9986aabd518fbb7394ff56936d0b0" }
lzma-rs = { workspace = true, optional = true }
dasp = { version = "0.11.0", features = ["interpolate", "interpolate-linear", "signal"], optional = true }
Expand Down
7 changes: 7 additions & 0 deletions core/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,11 @@ workspace = true
hashbrown = { workspace = true }
fnv = { workspace = true }
gc-arena = { workspace = true }
quick-xml = { workspace = true }
regress = { workspace = true }
ruffle_macros = { path = "../macros" }
ruffle_wstr = { path = "../../wstr" }
swf = { path = "../../swf" }
thiserror = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }
File renamed without changes.
7 changes: 6 additions & 1 deletion core/common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//! Types used across Ruffle
//! Methods and types used across Ruffle

pub mod avm_string;
pub mod buffer;
pub mod sandbox;
pub mod tag_utils;
pub mod utils;
pub mod xml;
File renamed without changes.
Loading
Loading