[package] name = "nigig-rider" version = "0.1.0" edition = "2021" [dependencies] # IMPORTANT: the `maps` feature MUST be enabled, otherwise the MapView widget # is never registered in `mod.prelude.widgets.*` and `map_layer := MapView { ... }` # in book.rs silently resolves to nothing (no map renders). # The example app in makepad-example-map uses the same flag. # `map_style` belongs to the Nigig map crate; the Robrix Makepad fork exposes # its built-in map widget through the `maps` feature only. makepad-widgets = { git = "https://gitdab.com/andodeki/makepad", rev = "a79f0dce4d477e2232344facca0798d3f25043ec", features = ["maps"] } nigig-map = { path = "../map" } nigig-core = { path = "../../nigig-core" } nigig-uikit = { path = "../../nigig-uikit" } valhalla = { path = "../valhalla" } serde = { version = "1", features = ["derive"] } serde_json = "1" chrono = { version = "0.4", features = ["serde"] } robius-location = { git = "https://github.com/project-robius/robius", rev = "b766e62b0600f5d2ee21cc6995648346fc277bd8" }