Skip to content

Commit 802c2ce

Browse files
committed
rename demo -> examples
Signed-off-by: Jorge Prendes <jorge.prendes@gmail.com>
1 parent 0897b81 commit 802c2ce

13 files changed

Lines changed: 433 additions & 24 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
- name: Install cargo-hyperlight
3232
shell: bash
3333
run: cargo install cargo-hyperlight --path .
34-
- name: Build guest demo
34+
- name: Build guest example
3535
shell: bash
3636
run: |
37-
cargo hyperlight build --manifest-path demo/guest/Cargo.toml
38-
- name: Run demo
37+
cargo hyperlight build --manifest-path examples/guest/Cargo.toml
38+
- name: Run example
3939
shell: bash
40-
run: cargo run --manifest-path demo/host/Cargo.toml -- demo/guest/target/x86_64-hyperlight-none/debug/guest
40+
run: cargo run --manifest-path examples/host/Cargo.toml -- examples/guest/target/x86_64-hyperlight-none/debug/guest
4141

4242
spelling:
4343
name: Spell check with typos

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/target
2-
/demo/*/target
2+
/examples/*/target

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ They will work out of the box!
1818
## Installation
1919

2020
```sh
21-
cargo install cargo-hyperlight --git https://github.com/hyperlight-dev/cargo-hyperlight
21+
cargo install cargo-hyperlight
2222
```
2323

2424
## Usage
@@ -33,9 +33,9 @@ version = "0.1.0"
3333
edition = "2024"
3434

3535
[dependencies]
36-
hyperlight-common = { version = "0.9.0", default-features = false }
37-
hyperlight-guest = "0.9.0"
38-
hyperlight-guest-bin = "0.9.0"
36+
hyperlight-common = { version = "0.11.0", default-features = false }
37+
hyperlight-guest = "0.11.0"
38+
hyperlight-guest-bin = "0.11.0"
3939
```
4040

4141
The in your `src/main.rs`

demo/host/Cargo.toml

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ edition = "2024"
55
publish = false
66

77
[dependencies]
8-
hyperlight-common = { version = "0.10.0", default-features = false }
9-
hyperlight-guest = "0.10.0"
10-
hyperlight-guest-bin = "0.10.0"
8+
hyperlight-common = { version = "0.11.0", default-features = false }
9+
hyperlight-guest = "0.11.0"
10+
hyperlight-guest-bin = "0.11.0"
1111

1212
[build-dependencies]
1313
cc = "1.2"

0 commit comments

Comments
 (0)