-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split into subcrates and start VS Code extension
- Loading branch information
1 parent
0d5b4b4
commit 0b8383c
Showing
79 changed files
with
3,707 additions
and
344 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
/target/ | ||
**/*.rs.bk | ||
.vscode | ||
Cargo.lock | ||
repl-history |
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 |
---|---|---|
@@ -1,44 +1,9 @@ | ||
[package] | ||
name = "pikelet" | ||
version = "0.1.0" | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"] | ||
description = "An implementation of a small dependently typed lambda calculus in Rust." | ||
homepage = "https://github.com/pikelet-lang/pikelet" | ||
repository = "https://github.com/pikelet-lang/pikelet" | ||
publish = false | ||
|
||
[features] | ||
default = ["cli"] | ||
cli = [ | ||
"linefeed", | ||
"structopt", | ||
"term_size", | ||
[workspace] | ||
members = [ | ||
"./crates/pikelet", | ||
"./crates/pikelet-driver", | ||
"./crates/pikelet-elaborate", | ||
"./crates/pikelet-language-server", | ||
"./crates/pikelet-repl", | ||
"./crates/pikelet-syntax", | ||
] | ||
|
||
[[bin]] | ||
name = "pikelet" | ||
required-features = ["cli"] | ||
|
||
[dependencies] | ||
codespan = "0.2.0" | ||
codespan-reporting = "0.2.0" | ||
failure = "0.1.2" | ||
im = "12.2.0" | ||
lalrpop-util = "0.16.0" | ||
moniker = { version = "0.5.0", features = ["codespan", "im"] } | ||
pretty = { version = "0.5.2", features = ["termcolor"] } | ||
unicode-xid = "0.1.0" | ||
|
||
# cli dependencies | ||
linefeed = { version = "0.5.1", optional = true } | ||
structopt = { version = "0.2.10", optional = true } | ||
term_size = { version = "0.3.1", optional = true } | ||
|
||
[build-dependencies] | ||
lalrpop = "0.16.0" | ||
|
||
[dev-dependencies] | ||
goldenfile = "0.7.1" | ||
pretty_assertions = "0.5.1" |
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,16 @@ | ||
[package] | ||
name = "pikelet-driver" | ||
version = "0.1.0" | ||
license = "Apache-2.0" | ||
readme = "../../README.md" | ||
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"] | ||
homepage = "https://github.com/pikelet-lang/pikelet" | ||
repository = "https://github.com/pikelet-lang/pikelet" | ||
publish = false | ||
|
||
[dependencies] | ||
codespan = "0.2.0" | ||
codespan-reporting = "0.2.0" | ||
pikelet-elaborate = { version = "0.1.0", path = "../pikelet-elaborate" } | ||
pikelet-library = { version = "0.1.0", path = "../pikelet-library" } | ||
pikelet-syntax = { version = "0.1.0", path = "../pikelet-syntax" } |
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,20 @@ | ||
[package] | ||
name = "pikelet-elaborate" | ||
version = "0.1.0" | ||
license = "Apache-2.0" | ||
readme = "../../README.md" | ||
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"] | ||
homepage = "https://github.com/pikelet-lang/pikelet" | ||
repository = "https://github.com/pikelet-lang/pikelet" | ||
publish = false | ||
|
||
[dependencies] | ||
codespan = "0.2.0" | ||
codespan-reporting = "0.2.0" | ||
failure = "0.1.2" | ||
im = "12.2.0" | ||
moniker = { version = "0.5.0", features = ["codespan", "im"] } | ||
pikelet-syntax = { version = "0.1.0", path = "../pikelet-syntax" } | ||
|
||
[dev-dependencies] | ||
goldenfile = "0.7.1" |
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
Oops, something went wrong.