[package] name = "spreadsheet-ui" version = "0.1.0" edition = "2021" description = "Makepad widget wrappers for the spreadsheet engine." [dependencies] # TODO: Update this path to match how your other crates reference makepad. # Options: # 1. If makepad is a git dependency in your workspace: # makepad-widgets = { git = "https://github.com/makepad/makepad.git", branch = "release" } # 2. If makepad is a local path relative to the workspace root: # makepad-widgets = { path = "../../../makepad/widgets" } # 3. If makepad is referenced the same way as nigig-build: # Copy the makepad-widgets dependency line from nigig-build's Cargo.toml # # For now, using a relative path from this crate's location: # crates/apps/spreadsheet/spreadsheet-ui/ → ../../../../makepad/widgets makepad-widgets = { git = "https://gitdab.com/andodeki/makepad", rev = "a79f0dce4d477e2232344facca0798d3f25043ec"} spreadsheet-engine = { path = "../spreadsheet-engine" } [dev-dependencies] makepad-test = { git = "https://gitdab.com/andodeki/makepad", rev = "a79f0dce4d477e2232344facca0798d3f25043ec", package = "makepad-test" }