Skip to content

Commit c520a56

Browse files
committed
rust 1.0.0
1 parent b9830cf commit c520a56

33 files changed

+2622
-1
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Publish Rust SDK to crates.io
2+
defaults:
3+
run:
4+
working-directory: rust/package
5+
on:
6+
push:
7+
tags:
8+
- "rust-[0-9]+.[0-9]+.[0-9]+"
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
id-token: write
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
20+
override: true
21+
- run: cargo publish
22+
env:
23+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ https://github.com/Openmesh-Network/xnode-manager
88

99
## Supported Programming Languages And Frameworks
1010

11-
[Rust](./rust/package/)
11+
[Rust](./rust/package/)
1212
[TypeScript](./ts/package/)
1313
[React](./ts/react/)
1414

rust/package/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)