Skip to content

Commit 68a0cbf

Browse files
authored
Merge pull request #50 from lambda-sh/vmarcella/publishing-setup
Publishing
2 parents 6d7419b + 23b0663 commit 68a0cbf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+110
-97
lines changed

.github/workflows/compile_lambda_rs.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,25 @@ jobs:
2222
include:
2323
- os: ubuntu-latest
2424
rustup-toolchain: "stable"
25-
features: "lambda/with-opengl"
25+
features: "lambda-rs/with-opengl"
2626
- os: ubuntu-latest
2727
rustup-toolchain: "stable"
28-
features: "lambda/with-vulkan"
28+
features: "lambda-rs/with-vulkan"
2929
- os: windows-latest
3030
rustup-toolchain: "stable"
31-
features: "lambda/with-vulkan"
31+
features: "lambda-rs/with-vulkan"
3232
- os: windows-latest
3333
rustup-toolchain: "stable"
34-
features: "lambda/with-dx11"
34+
features: "lambda-rs/with-dx11"
3535
- os: windows-latest
3636
rustup-toolchain: "stable"
37-
features: "lambda/with-dx12"
37+
features: "lambda-rs/with-dx12"
3838
- os: macos-latest
3939
rustup-toolchain: "stable"
40-
features: "lambda/with-opengl"
40+
features: "lambda-rs/with-opengl"
4141
- os: macos-latest
4242
rustup-toolchain: "stable"
43-
features: "lambda/with-metal"
43+
features: "lambda-rs/with-metal"
4444

4545
steps:
4646
- name: Checkout Repository

Cargo.lock

Lines changed: 27 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
# Sub packages provided by lambda.
44
members = [
5-
"lambda",
6-
"crates/lambda-platform",
7-
"crates/lambda-args",
5+
"crates/lambda-rs",
6+
"crates/lambda-rs-args",
7+
"crates/lambda-rs-platform",
88
"tools/obj_loader"
99
]
1010

1111
default-members = [
12-
"lambda",
13-
"crates/lambda-platform",
12+
"crates/lambda-rs",
13+
"crates/lambda-rs-args",
14+
"crates/lambda-rs-platform",
1415
"tools/obj_loader"
1516
]

crates/lambda-args/Cargo.toml

Lines changed: 0 additions & 8 deletions
This file was deleted.

crates/lambda-platform/src/gfx/api.rs

Lines changed: 0 additions & 24 deletions
This file was deleted.

crates/lambda-rs-args/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "lambda-rs-args"
3+
description = "Argument parser for lambda-rs tools."
4+
version = "2023.1.27-1"
5+
edition = "2021"
6+
license = "MIT"
7+
8+
[lib]
9+
name = "args"
10+
path = "src/lib.rs"
File renamed without changes.

crates/lambda-platform/Cargo.toml renamed to crates/lambda-rs-platform/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[package]
2-
name = "lambda-platform"
3-
version = "2023.1.25"
2+
name = "lambda-rs-platform"
3+
description = "Platform implementations for lambda-rs"
4+
version = "2023.1.27-1"
45
edition = "2021"
56
resolver = "2"
7+
license = "MIT"
68

79
[lib]
810
name = "lambda_platform"
@@ -15,6 +17,7 @@ shaderc = "=0.7"
1517
cfg-if = "=1.0.0"
1618
rand = "=0.8.5"
1719
obj-rs = "=0.7.0"
20+
gfx-backend-empty = "=0.9.0"
1821

1922
# GFX-RS backends
2023
gfx-backend-gl = { version="=0.9.0", optional = true }

0 commit comments

Comments
 (0)