refactor move starmelon to infra/

This commit is contained in:
nobody 2024-05-02 15:37:22 -07:00
commit 180015bfcd
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
12 changed files with 15 additions and 808 deletions

View file

@ -13,19 +13,19 @@ edition = "2018"
[dependencies]
ahash = "0.8"
clap = { version = "4.5", features = ["derive"] }
elmi = { path = "../../../infra/rust-elmi", features = [ "genco" ] }
naive-wadler-prettier= { path = "../../../infra/redwood-lang/compiler/naive-wadler-prettier" }
elmi = { path = "../../infra/rust-elmi", features = [ "genco" ] }
naive-wadler-prettier= { path = "../../infra/redwood-lang/compiler/naive-wadler-prettier" }
os_pipe = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version ="1.0", features = [] }
elm-project-utils = { path = "../../../infra/rust-elm-project-utils" }
elm-project-utils = { path = "../../infra/rust-elm-project-utils" }
tracing = { version = "0.1", features = [] }
rustc-hash = "1.1"
home = "0.5"
# Required to transpile view functions to Rust
genco = "0.17"
# Required to generate fixture Elm files
genco-extra = { path = "../../../infra/genco-extra" }
genco-extra = { path = "../../infra/genco-extra" }
# All of these are required for deno's javascript runtime. We need to keep the
# same versions as other projects in our cargo workspace. Multiple different
# versions of rusty_v8 seem to break its build script.
@ -42,7 +42,7 @@ futures = "0.3"
oneshot = { version = "0.1.6", features = ["std"]}
sqlx = { version = "0.7", features = [ "sqlite", "macros", "runtime-tokio", "chrono", "json", "uuid" ] }
# required for livetable derive macro
livetable-core = { path = "../../../infra/livetable/core" }
livetable-core = { path = "../../infra/livetable/core" }
# required for clean subcommand
walkdir = "2.4"