mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 17:37:22 +03:00
fd212b474c
https://github.com/koute/cargo-web/issues/217. After adding some debugging to that tool, discovered the problem was generic-array, pulled in by the new geo version. Forcing that to the older version fixes things.
18 lines
448 B
TOML
18 lines
448 B
TOML
[package]
|
|
name = "geom"
|
|
version = "0.1.0"
|
|
authors = ["Dustin Carlino <dabreegster@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
aabb-quadtree = "0.1.0"
|
|
abstutil = { path = "../abstutil" }
|
|
earcutr = { git = "https://github.com/dabreegster/earcutr", branch = "patch-1" }
|
|
geo = "= 0.13.0"
|
|
geo-booleanop = "= 0.3.0"
|
|
histogram = "0.6.9"
|
|
instant = "0.1.7"
|
|
ordered-float = { version = "2.0.0", features=["serde"] }
|
|
polylabel = "= 2.2.0"
|
|
serde = "1.0.116"
|