forked from tweag/nickel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate the WASM repl in wrapper crate
- Loading branch information
Showing
5 changed files
with
34 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ members = [ | |
".", | ||
"lsp/nls", | ||
"utilities", | ||
"nickel-wasm-repl", | ||
] | ||
|
||
# Enable this to use flamegraphs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[package] | ||
name = "nickel-repl" | ||
version = "0.1.0" | ||
authors = ["Nickel team"] | ||
license = "MIT" | ||
readme = "README.md" | ||
description = "WebAssembly REPL for the Nickel programming language." | ||
homepage = "https://nickel-lang.org" | ||
repository = "https://github.com/tweag/nickel" | ||
keywords = ["configuration", "language", "nix", "nickel"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
nickel-lang = {default-features = false, path = "../", version = "0.1.0", features=["repl-wasm"]} | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub use nickel_lang::*; |