rel(0.1.0-alpha.1): update workspace for alpha

This commit is contained in:
chyyran 2022-12-01 02:07:21 -05:00
parent e804ffd310
commit ba41055a58
10 changed files with 108 additions and 56 deletions

16
Cargo.lock generated
View file

@ -410,7 +410,7 @@ checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
[[package]] [[package]]
name = "librashader" name = "librashader"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"librashader-common", "librashader-common",
"librashader-preprocess", "librashader-preprocess",
@ -423,7 +423,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-common" name = "librashader-common"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"gl", "gl",
"image", "image",
@ -433,7 +433,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-preprocess" name = "librashader-preprocess"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"librashader-common", "librashader-common",
"nom", "nom",
@ -442,7 +442,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-presets" name = "librashader-presets"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"librashader-common", "librashader-common",
"nom", "nom",
@ -453,7 +453,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-reflect" name = "librashader-reflect"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"librashader-common", "librashader-common",
@ -469,7 +469,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-runtime" name = "librashader-runtime"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"librashader-common", "librashader-common",
@ -482,7 +482,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-runtime-d3d11" name = "librashader-runtime-d3d11"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"gfx-maths", "gfx-maths",
@ -499,7 +499,7 @@ dependencies = [
[[package]] [[package]]
name = "librashader-runtime-gl" name = "librashader-runtime-gl"
version = "0.1.0" version = "0.1.0-alpha.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"gl", "gl",

View file

@ -9,3 +9,5 @@ members = [
"librashader-runtime-d3d11", "librashader-runtime-d3d11",
"librashader-runtime-gl", "librashader-runtime-gl",
] ]
[workspace.metadata.release]

View file

@ -1,9 +1,15 @@
[package] [package]
name = "librashader-common" name = "librashader-common"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[features] [features]
default = [] default = []

View file

@ -1,14 +1,20 @@
[package] [package]
name = "librashader-preprocess" name = "librashader-preprocess"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
thiserror = "1.0.37" thiserror = "1.0.37"
nom = "7.1.1" nom = "7.1.1"
librashader-common = { path = "../librashader-common" } librashader-common = { path = "../librashader-common", version = "0.1.0-alpha.1" }
[features] [features]
default = [ "line_directives" ] default = [ "line_directives" ]

View file

@ -1,15 +1,21 @@
[package] [package]
name = "librashader-presets" name = "librashader-presets"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
thiserror = "1.0.37" thiserror = "1.0.37"
nom = "7.1.1" nom = "7.1.1"
nom_locate = "4.0.0" nom_locate = "4.0.0"
librashader-common = { path = "../librashader-common" } librashader-common = { path = "../librashader-common", version = "0.1.0-alpha.1" }
num-traits = "0.2" num-traits = "0.2"
[features] [features]

View file

@ -1,9 +1,15 @@
[package] [package]
name = "librashader-reflect" name = "librashader-reflect"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
shaderc = { version = "0.8.0" } shaderc = { version = "0.8.0" }
@ -14,12 +20,12 @@ thiserror = "1.0.37"
bitflags = "1.3.2" bitflags = "1.3.2"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
librashader-common = { path = "../librashader-common" } librashader-common = { path = "../librashader-common", version = "0.1.0-alpha.1" }
librashader-preprocess = { path = "../librashader-preprocess" } librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.1" }
naga = { version = "0.10.0", features = ["glsl-in", "spv-in", "spv-out", "glsl-out", "wgsl-out"], optional = true } naga = { version = "0.10.0", features = ["glsl-in", "spv-in", "spv-out", "glsl-out", "wgsl-out"], optional = true }
rspirv = { version = "0.11.0+1.5.4", optional = true } rspirv = { version = "0.11.0+1.5.4", optional = true }
rspirv-reflect = { git = "https://github.com/Traverse-Research/rspirv-reflect", optional = true } rspirv-reflect = { git = "https://github.com/Traverse-Research/rspirv-reflect", optional = true, version = "0.7.0" }
[features] [features]
default = [] default = []

View file

@ -1,16 +1,22 @@
[package] [package]
name = "librashader-runtime-d3d11" name = "librashader-runtime-d3d11"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
librashader-common = { path = "../librashader-common", features = ["d3d11"] } librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.1.0-alpha.1" }
librashader-presets = { path = "../librashader-presets" } librashader-presets = { path = "../librashader-presets", version = "0.1.0-alpha.1" }
librashader-preprocess = { path = "../librashader-preprocess" } librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.1" }
librashader-reflect = { path = "../librashader-reflect" } librashader-reflect = { path = "../librashader-reflect", version = "0.1.0-alpha.1" }
librashader-runtime = { path = "../librashader-runtime" } librashader-runtime = { path = "../librashader-runtime", version = "0.1.0-alpha.1" }
thiserror = "1.0.37" thiserror = "1.0.37"
spirv_cross = "0.23.1" spirv_cross = "0.23.1"

View file

@ -1,16 +1,22 @@
[package] [package]
name = "librashader-runtime-gl" name = "librashader-runtime-gl"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
librashader-common = { path = "../librashader-common", features = ["opengl"] } librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.1.0-alpha.1" }
librashader-presets = { path = "../librashader-presets" } librashader-presets = { path = "../librashader-presets", version = "0.1.0-alpha.1" }
librashader-preprocess = { path = "../librashader-preprocess" } librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.1" }
librashader-reflect = { path = "../librashader-reflect" } librashader-reflect = { path = "../librashader-reflect", version = "0.1.0-alpha.1" }
librashader-runtime = { path = "../librashader-runtime" } librashader-runtime = { path = "../librashader-runtime" , version = "0.1.0-alpha.1" }
spirv_cross = "0.23.1" spirv_cross = "0.23.1"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
gl = "0.14.0" gl = "0.14.0"

View file

@ -1,15 +1,21 @@
[package] [package]
name = "librashader-runtime" name = "librashader-runtime"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
librashader-common = { path = "../librashader-common" } librashader-common = { path = "../librashader-common", version = "0.1.0-alpha.1" }
librashader-presets = { path = "../librashader-presets" } librashader-presets = { path = "../librashader-presets", version = "0.1.0-alpha.1" }
librashader-preprocess = { path = "../librashader-preprocess" } librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.1" }
librashader-reflect = { path = "../librashader-reflect" } librashader-reflect = { path = "../librashader-reflect", version = "0.1.0-alpha.1" }
bytemuck = "1.12.3" bytemuck = "1.12.3"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
num-traits = "0.2.15" num-traits = "0.2.15"

View file

@ -1,17 +1,25 @@
[package] [package]
name = "librashader" name = "librashader"
version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.1.0-alpha.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
[dependencies] [dependencies]
librashader-common = { path = "../librashader-common" } librashader-common = { path = "../librashader-common", version = "0.1.0-alpha.1" }
librashader-presets = { path = "../librashader-presets" } librashader-presets = { path = "../librashader-presets", version = "0.1.0-alpha.1" }
librashader-preprocess = { path = "../librashader-preprocess" } librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.1" }
librashader-reflect = { path = "../librashader-reflect" } librashader-reflect = { path = "../librashader-reflect", version = "0.1.0-alpha.1" }
librashader-runtime = { path = "../librashader-runtime" } librashader-runtime = { path = "../librashader-runtime", version = "0.1.0-alpha.1" }
librashader-runtime-d3d11 = { path = "../librashader-runtime-d3d11" } librashader-runtime-d3d11 = { path = "../librashader-runtime-d3d11", version = "0.1.0-alpha.1" }
librashader-runtime-gl = { path = "../librashader-runtime-gl" } librashader-runtime-gl = { path = "../librashader-runtime-gl", version = "0.1.0-alpha.1" }
[features] [features]