-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into pp/add-ext
- Loading branch information
Showing
18 changed files
with
61 additions
and
33 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 |
---|---|---|
|
@@ -17,12 +17,6 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- uses: cocogitto/[email protected] | ||
with: | ||
check-latest-tag-only: true | ||
git-user: glsl-lang | ||
git-user-email: [email protected] | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
key: ${{ runner.os }} | ||
|
@@ -44,6 +38,12 @@ jobs: | |
- name: Check clippy lints | ||
run: cargo clippy -- -D warnings -A clippy::result_large_err | ||
|
||
- uses: cocogitto/[email protected] | ||
with: | ||
check-latest-tag-only: true | ||
git-user: glsl-lang | ||
git-user-email: [email protected] | ||
|
||
test: | ||
name: Test crate | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "glsl-lang-cli" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -13,9 +13,9 @@ keywords = ["glsl", "language", "parser", "ast", "cli"] | |
categories = ["command-line-interface", "parser-implementations", "rendering"] | ||
|
||
[dependencies] | ||
glsl-lang = { version = "=0.6.1", features = ["lexer-v2-full"] } | ||
glsl-lang-pp = { version = "=0.6.1" } | ||
lang-util = "=0.6.1" | ||
glsl-lang = { version = "=0.7.0", features = ["lexer-v2-full"] } | ||
glsl-lang-pp = { version = "=0.7.0" } | ||
lang-util = "=0.7.0" | ||
argh = "0.1" | ||
|
||
serde_json = { version = "1.0", optional = true } | ||
|
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 = "glsl-lang-lexer" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -13,8 +13,8 @@ keywords = ["glsl", "language", "parser"] | |
categories = ["parser-implementations", "rendering"] | ||
|
||
[dependencies] | ||
glsl-lang-types = "=0.6.1" | ||
lang-util = { version = "=0.6.1", features = ["lalrpop"] } | ||
glsl-lang-types = "=0.7.0" | ||
lang-util = { version = "=0.7.0", features = ["lalrpop"] } | ||
|
||
thiserror = "1.0" | ||
|
||
|
@@ -24,7 +24,7 @@ rserde = { version = "1.0", optional = true, features = ["derive"], package = "s | |
logos = { version = "0.12", optional = true } | ||
|
||
# v2 lexer dependencies | ||
glsl-lang-pp = { version = "=0.6.1", optional = true } | ||
glsl-lang-pp = { version = "=0.7.0", optional = true } | ||
lalrpop-util = { version = "0.20.0", default-features = false, 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 = "glsl-lang-pp" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -14,7 +14,7 @@ categories = ["parser-implementations", "rendering"] | |
build = "build.rs" | ||
|
||
[dependencies] | ||
lang-util = "=0.6.1" | ||
lang-util = "=0.7.0" | ||
|
||
string_cache = "0.8" | ||
thiserror = "1.0" | ||
|
@@ -32,7 +32,7 @@ itertools = { version = "0.13", optional = true } | |
once_cell = { version = "1.17.1", optional = true } | ||
|
||
[dev-dependencies] | ||
lang-util-dev = "=0.6.1" | ||
lang-util-dev = "=0.7.0" | ||
|
||
expect-test = "1.3" | ||
encoding_rs = "0.8" | ||
|
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 = "glsl-lang-quote" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -17,7 +17,7 @@ proc-macro = true | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
glsl-lang = { version = "=0.6.1", default-features = false, features = ["lexer-v2-full"] } | ||
glsl-lang = { version = "=0.7.0", default-features = false, features = ["lexer-v2-full"] } | ||
|
||
proc-macro2 = "1" | ||
quote = "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
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 = "glsl-lang-types" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -13,7 +13,7 @@ keywords = ["glsl", "language", "parser"] | |
categories = ["rendering"] | ||
|
||
[dependencies] | ||
lang-util = "=0.6.1" | ||
lang-util = "=0.7.0" | ||
thiserror = "1.0" | ||
|
||
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" } | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "lang-util-derive" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
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 = "lang-util-dev" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
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 = "lang-util" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -13,7 +13,7 @@ keywords = ["language", "parser", "ast"] | |
categories = ["parsing"] | ||
|
||
[dependencies] | ||
lang-util-derive = "=0.6.1" | ||
lang-util-derive = "=0.7.0" | ||
line-span = "0.1" | ||
smol_str = "0.2" | ||
text-size = "1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "glsl-lang" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Alixinne <[email protected]>"] | ||
edition = "2021" | ||
license = "BSD-3-Clause" | ||
|
@@ -17,19 +17,19 @@ lalrpop-util = { version = "0.20.0", default-features = false, features = ["std" | |
once_cell = "1.17.1" | ||
thiserror = "1.0" | ||
|
||
lang-util = { version = "=0.6.1", features = ["lalrpop"] } | ||
glsl-lang-pp = { version = "=0.6.1", optional = true } | ||
glsl-lang-lexer = { version = "=0.6.1", features = ["lalrpop"] } | ||
glsl-lang-types = "=0.6.1" | ||
lang-util = { version = "=0.7.0", features = ["lalrpop"] } | ||
glsl-lang-pp = { version = "=0.7.0", optional = true } | ||
glsl-lang-lexer = { version = "=0.7.0", features = ["lalrpop"] } | ||
glsl-lang-types = "=0.7.0" | ||
|
||
rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" } | ||
|
||
[build-dependencies] | ||
lalrpop = "0.20.0" | ||
|
||
[dev-dependencies] | ||
lang-util-dev = "=0.6.1" | ||
glsl-lang-pp = "=0.6.1" | ||
lang-util-dev = "=0.7.0" | ||
glsl-lang-pp = "=0.7.0" | ||
|
||
criterion = "0.5" | ||
expect-test = "1.3" | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "xtask" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|