Enable wasm compilation
This commit is contained in:
parent
f639082205
commit
8e30f35890
4 changed files with 10 additions and 11 deletions
|
|
@ -13,7 +13,7 @@ serde = { version = "1.0.192", features = ["derive"] }
|
|||
serde_json = "1.0.135"
|
||||
serde_yaml = "0.9.34"
|
||||
clap = { version = "4.5.26", features = ["derive"] }
|
||||
rand = { version = "0.9.0", features = ["small_rng"] }
|
||||
rand = { version = "0.9.0", default-features = false, features = ["small_rng"] }
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||||
tracing-perfetto = { git = "https://git.he-li.dev/hal8174/tracing-perfetto.git" }
|
||||
|
|
|
|||
|
|
@ -6,12 +6,12 @@ edition = "2024"
|
|||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5"
|
||||
proptest = "1.5.0"
|
||||
proptest-derive = "0.5.0"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.26", features = ["derive"] }
|
||||
image = "0.25.5"
|
||||
proptest = "1.5.0"
|
||||
proptest-derive = "0.5.0"
|
||||
rand = "0.9.0"
|
||||
rand = { version = "0.9.0", default-features = false }
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
termcolor = "1.4.1"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ edition = "2024"
|
|||
factorio-core = { path = "../factorio-core" }
|
||||
factorio-pathfinding = { path = "../factorio-pathfinding" }
|
||||
factorio-graph = { path = "../factorio-graph" }
|
||||
rand = { version = "0.9.0", features = ["small_rng"] }
|
||||
rand = { version = "0.9.0", default-features = false, features = ["std", "small_rng"] }
|
||||
serde = { version = "1.0.192", features = ["derive"] }
|
||||
image = "0.25.2"
|
||||
serde_json = "1.0.108"
|
||||
|
|
|
|||
|
|
@ -5,14 +5,15 @@ edition = "2024"
|
|||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5"
|
||||
|
||||
[[bench]]
|
||||
name = "bruteforce"
|
||||
harness = false
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5"
|
||||
proptest = "1.5.0"
|
||||
proptest-derive = "0.5.0"
|
||||
|
||||
[dependencies]
|
||||
factorio-core = { path = "../factorio-core" }
|
||||
factorio-graph = { path = "../factorio-graph" }
|
||||
|
|
@ -23,8 +24,6 @@ clap = { version = "4.4.8", features = ["derive"] }
|
|||
flate2 = "1.0.28"
|
||||
image = "0.25.2"
|
||||
miette = { version = "7.2.0", features = ["fancy"] }
|
||||
proptest = "1.5.0"
|
||||
proptest-derive = "0.5.0"
|
||||
serde = { version = "1.0.192", features = ["derive"] }
|
||||
serde_json = "1.0.108"
|
||||
serde_yaml = "0.9.34"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue