replace cargo deps with workspace in roc_docs

This commit is contained in:
Luke Boswell 2024-11-29 10:44:44 +11:00
parent 73305b97cb
commit a529079692
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
2 changed files with 20 additions and 15 deletions

View file

@ -167,17 +167,21 @@ roc_fmt = { path = "crates/compiler/fmt" }
roc_gen_llvm = { path = "crates/compiler/gen_llvm" }
roc_gen_dev = { path = "crates/compiler/gen_dev" }
roc_glue = { path = "crates/glue" }
roc_highlight = { path = "crates/highlight" }
roc_linker = { path = "crates/linker" }
roc_load = { path = "crates/compiler/load" }
roc_module = { path = "crates/compiler/module" }
roc_mono = { path = "crates/compiler/mono" }
roc_packaging = { path = "crates/packaging" }
roc_parse = { path = "crates/compiler/parse" }
roc_problem = { path = "crates/compiler/problem" }
roc_region = { path = "crates/compiler/region" }
roc_repl_cli = { path = "crates/repl_cli" }
roc_reporting = { path = "crates/reporting" }
roc_solve = { path = "crates/compiler/solve" }
roc_target = { path = "crates/compiler/roc_target" }
roc_tracing = { path = "crates/tracing" }
roc_types = { path = "crates/compiler/types" }
roc_wasm_interp = { path = "crates/wasm_interp" }
rustyline = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" }
rustyline-derive = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" }
@ -200,6 +204,7 @@ tempfile = "=3.2.0"
tracing = { version = "0.1.40", features = ["release_max_level_off"] }
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
ven_pretty = { path = "crates/vendor/pretty" }
walkdir = "2.3.2"
wasm-bindgen = "0.2.84"
wasm-bindgen-futures = "0.4.34"

View file

@ -8,22 +8,22 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_builtins = { path = "../compiler/builtins" }
roc_can = { path = "../compiler/can" }
roc_collections = { path = "../compiler/collections" }
roc_highlight = { path = "../highlight" }
roc_load = { path = "../compiler/load" }
roc_module = { path = "../compiler/module" }
roc_packaging = { path = "../packaging" }
roc_parse = { path = "../compiler/parse" }
roc_region = { path = "../compiler/region" }
roc_reporting = { path = "../reporting" }
roc_solve = { path = "../compiler/solve" }
roc_target = { path = "../compiler/roc_target" }
roc_types = { path = "../compiler/types" }
roc_problem = { path = "../compiler/problem" }
roc_builtins.workspace = true
roc_can.workspace = true
roc_collections.workspace = true
roc_highlight.workspace = true
roc_load.workspace = true
roc_module.workspace = true
roc_packaging.workspace = true
roc_parse.workspace = true
roc_region.workspace = true
roc_reporting.workspace = true
roc_solve.workspace = true
roc_target.workspace = true
roc_types.workspace = true
roc_problem.workspace = true
ven_pretty = { path = "../vendor/pretty" }
ven_pretty.workspace = true
bumpalo.workspace = true
pulldown-cmark.workspace = true