Skip to content

Commit

Permalink
use basic-cli from git not local
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewilliamboswell committed Dec 18, 2024
1 parent 32f63bf commit 6f234fa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
6 changes: 6 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 6 additions & 15 deletions crates/roc_host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,12 @@ path = "src/lib.rs"

[dependencies]
roc_std.workspace = true
# TODO restore when basic-cli changes land
# https://github.com/roc-lang/basic-cli/pull/288
#
# roc_env = { git = "https://github.com/roc-lang/basic-cli.git" }
# roc_command = { git = "https://github.com/roc-lang/basic-cli.git" }
# roc_io_error = { git = "https://github.com/roc-lang/basic-cli.git" }
# roc_stdio = { git = "https://github.com/roc-lang/basic-cli.git" }
# roc_file = { git = "https://github.com/roc-lang/basic-cli.git" }
# roc_http = { git = "https://github.com/roc-lang/basic-cli.git" }
roc_env = { path = "../../../basic-cli/crates/roc_env" }
roc_command = { path = "../../../basic-cli/crates/roc_command" }
roc_io_error = { path = "../../../basic-cli/crates/roc_io_error" }
roc_stdio = { path = "../../../basic-cli/crates/roc_stdio" }
roc_file = { path = "../../../basic-cli/crates/roc_file" }
roc_http = { path = "../../../basic-cli/crates/roc_http" }
roc_env = { git = "https://github.com/roc-lang/basic-cli.git" }
roc_command = { git = "https://github.com/roc-lang/basic-cli.git" }
roc_io_error = { git = "https://github.com/roc-lang/basic-cli.git" }
roc_stdio = { git = "https://github.com/roc-lang/basic-cli.git" }
roc_file = { git = "https://github.com/roc-lang/basic-cli.git" }
roc_http = { git = "https://github.com/roc-lang/basic-cli.git" }
libc = "0.2"
hyper = { version = "0.14", features = [
"http1",
Expand Down

0 comments on commit 6f234fa

Please sign in to comment.