-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from pax-lang/wj/lsp
Fix Fill auto-complete and update crates
- Loading branch information
Showing
17 changed files
with
94 additions
and
94 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pax-cartridge" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -10,8 +10,8 @@ description = "Static program definition container for Pax programs, intended to | |
|
||
[dependencies] | ||
piet-common = "0.6.0" | ||
pax-core = {path = "../pax-core", version = "0.9.7"} | ||
pax-runtime-api = {path = "../pax-runtime-api", version = "0.9.7"} | ||
pax-properties-coproduct = {path = "../pax-properties-coproduct", version="0.9.7"} | ||
pax-std-primitives = {path = "../pax-std/pax-std-primitives", version = "0.9.7"} | ||
pax-core = {path = "../pax-core", version = "0.9.9"} | ||
pax-runtime-api = {path = "../pax-runtime-api", version = "0.9.9"} | ||
pax-properties-coproduct = {path = "../pax-properties-coproduct", version="0.9.9"} | ||
pax-std-primitives = {path = "../pax-std/pax-std-primitives", version = "0.9.9"} | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "pax-chassis-macos" | ||
edition = "2021" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://pax.dev/" | ||
|
@@ -15,11 +15,11 @@ crate-type = ["staticlib", "cdylib"] | |
[dependencies] | ||
piet = "0.6.0" | ||
piet-coregraphics = "0.6.0" | ||
pax-core = { path = "../pax-core", version="0.9.7" } | ||
pax-cartridge = {path="../pax-cartridge", version="0.9.7"} | ||
pax-message = {path = "../pax-message", version="0.9.7"} | ||
pax-runtime-api = {path = "../pax-runtime-api", version="0.9.7"} | ||
pax-properties-coproduct = {path="../pax-properties-coproduct", version="0.9.7"} | ||
pax-core = { path = "../pax-core", version="0.9.9" } | ||
pax-cartridge = {path="../pax-cartridge", version="0.9.9"} | ||
pax-message = {path = "../pax-message", version="0.9.9"} | ||
pax-runtime-api = {path = "../pax-runtime-api", version="0.9.9"} | ||
pax-properties-coproduct = {path="../pax-properties-coproduct", version="0.9.9"} | ||
lazy_static = "1.4.0" | ||
mut_static = "5.0.0" | ||
#be cautious about core-graphics' version number -- | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pax-chassis-web" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -17,11 +17,11 @@ default = ["console_error_panic_hook"] | |
[dependencies] | ||
piet = "0.6.0" | ||
piet-web = "0.6.0" | ||
pax-core = { path = "../pax-core", version="0.9.7" } | ||
pax-properties-coproduct = {path="../pax-properties-coproduct", version="0.9.7"} | ||
pax-cartridge = {path="../pax-cartridge", version="0.9.7"} | ||
pax-runtime-api = {path = "../pax-runtime-api", version="0.9.7"} | ||
pax-message = {path = "../pax-message", version="0.9.7"} | ||
pax-core = { path = "../pax-core", version="0.9.9" } | ||
pax-properties-coproduct = {path="../pax-properties-coproduct", version="0.9.9"} | ||
pax-cartridge = {path="../pax-cartridge", version="0.9.9"} | ||
pax-runtime-api = {path = "../pax-runtime-api", version="0.9.9"} | ||
pax-message = {path = "../pax-message", version="0.9.9"} | ||
|
||
wasm-bindgen = {version = "0.2.80", features=["serde-serialize"]} | ||
serde = "1.0.159" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pax-cli" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -12,12 +12,12 @@ description = "Command line interface tool for developing, packaging, and managi | |
|
||
[dependencies] | ||
clap = "2.33.3" | ||
pax-compiler = {path = "../pax-compiler", version = "0.9.7"} | ||
pax-compiler = {path = "../pax-compiler", version = "0.9.9"} | ||
rustc_version = "0.4.0" | ||
tokio = { version = "1", features = ["full"] } | ||
colored = "2.0.0" | ||
reqwest = "0.11.18" | ||
signal-hook = "0.3" | ||
nix = "0.20.2" | ||
pax-language-server = {version = "0.9.7"} | ||
pax-language-server = {version = "0.9.9"} | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pax-compiler" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -31,8 +31,8 @@ tokio = { version = "1", features = ["full"] } | |
reqwest = { version = "0.11.18", features = ["blocking"] } | ||
tar = "0.4" | ||
fs_extra = "1.3.0" | ||
pax-message = {version = "0.9.7", path="../pax-message"} | ||
pax-runtime-api = {version= "0.9.7", path="../pax-runtime-api"} | ||
pax-message = {version = "0.9.9", path="../pax-message"} | ||
pax-runtime-api = {version= "0.9.9", path="../pax-runtime-api"} | ||
pest = "2.6.0" | ||
pest_derive = "2.6.0" | ||
itertools = "0.10.5" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pax-core" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -14,9 +14,9 @@ description = "Core shared runtime and rendering engine for Pax" | |
piet = "0.6.0" | ||
piet-common = "0.6.0" | ||
kurbo = "0.9.0" | ||
pax-properties-coproduct = { path="../pax-properties-coproduct", version="0.9.7" } | ||
pax-runtime-api = {path = "../pax-runtime-api", version="0.9.7"} | ||
pax-message = {path = "../pax-message", version="0.9.7"} | ||
pax-properties-coproduct = { path="../pax-properties-coproduct", version="0.9.9" } | ||
pax-runtime-api = {path = "../pax-runtime-api", version="0.9.9"} | ||
pax-message = {path = "../pax-message", version="0.9.9"} | ||
wasm-bindgen = {version = "0.2.30", features=["serde-serialize"]} | ||
|
||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pax-example" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -9,9 +9,9 @@ repository = "https://www.github.com/pax-lang/pax" | |
description = "Example and development app for the Pax monorepo and compiler" | ||
|
||
[dependencies] | ||
pax-lang = { version="0.9.7", path=".pax/pkg/pax-lang" } | ||
pax-std = { version="0.9.7", path=".pax/pkg/pax-std" } | ||
pax-compiler = {version = "0.9.7", path=".pax/pkg/pax-compiler", optional = true} | ||
pax-lang = { version="0.9.9", path=".pax/pkg/pax-lang" } | ||
pax-std = { version="0.9.9", path=".pax/pkg/pax-std" } | ||
pax-compiler = {version = "0.9.9", path=".pax/pkg/pax-compiler", optional = true} | ||
serde_json = {version = "1.0.95", optional = true} | ||
|
||
[features] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pax-lang" | ||
version = "0.9.7" | ||
version = "0.9.9" | ||
authors = ["Zack Brown <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -11,10 +11,10 @@ description = "Root import entry-point for using Pax in a Rust program" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
pax-macro = {path="../pax-macro", version="0.9.7"} | ||
pax-message = {path="../pax-message", version="0.9.7"} | ||
pax-runtime-api = {path="../pax-runtime-api", version="0.9.7"} | ||
pax-compiler = {path="../pax-compiler", optional=true, version="0.9.7"} | ||
pax-macro = {path="../pax-macro", version="0.9.9"} | ||
pax-message = {path="../pax-message", version="0.9.9"} | ||
pax-runtime-api = {path="../pax-runtime-api", version="0.9.9"} | ||
pax-compiler = {path="../pax-compiler", optional=true, version="0.9.9"} | ||
|
||
[features] | ||
parser = ["dep:pax-compiler"] | ||
|
Oops, something went wrong.