Skip to content

Commit 96498c5

Browse files
committed
initial commit
0 parents  commit 96498c5

File tree

210 files changed

+20823
-0
lines changed

Some content is hidden

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

210 files changed

+20823
-0
lines changed

.github/funding.yml

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

.github/workflows/rust.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
Test:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: Swatinem/rust-cache@v2
18+
- name: Install prerequisites
19+
run: |
20+
cargo install cargo-workspaces
21+
22+
sudo apt-get update
23+
sudo apt-get install -y \
24+
libudev-dev \
25+
libwebkit2gtk-4.0-dev \
26+
build-essential \
27+
curl \
28+
wget \
29+
libssl-dev \
30+
libgtk-3-dev \
31+
libayatana-appindicator3-dev \
32+
librsvg2-dev
33+
- name: Build
34+
run: cargo build --all-features
35+
- name: Build Workspaces
36+
run: cargo ws exec cargo build --all-features
37+
- name: Build Examples
38+
run: cargo build --examples --all-features
39+
- name: Run tests
40+
run: cargo ws exec cargo test --all-features
41+
Format:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v3
45+
- uses: Swatinem/rust-cache@v2
46+
- name: Check format
47+
run: cargo fmt --check
48+
Changelog:
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v3
52+
- uses: orhun/git-cliff-action@v1
53+
with:
54+
config: cliff.toml
55+
args: --verbose
56+
env:
57+
OUTPUT: CHANGELOG.md

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Jujutsu VCS state (jj-vcs.dev)
2+
.jj/
3+
4+
.DS_Store
5+
6+
/debug
7+
/target/
8+
/node_modules/
9+
**/*.rs.bk
10+
*.pdb
11+
12+
**/public
13+
# /docs/website/static/style.css
14+
/examples/cli/config/config/local.toml
15+
16+
.vscode/*
17+
!.vscode/settings.json
18+
!.vscode/tasks.json
19+
!.vscode/launch.json
20+
!.vscode/extensions.json
21+
tarpaulin-report.html
22+
23+
# Jetbrain
24+
.idea/
25+
26+
.obsidian/
27+
!.obsidian/plugins/obsidian-git/data.json
28+
!.obsidian/plugins/obsidian-linter/data.json
29+

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "handbook-internal"]
2+
path = docs/handbook/Internal
3+
url = https://github.com/reliverse/handbook-internal.git
4+
branch = main

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [unreleased]
6+
7+
### Bug Fixes
8+
9+
- ...
10+
11+
### Documentation
12+
13+
- Use convco for conventional-commit message
14+
- Auto generate changelog on pull request
15+
16+
## [0.1.0] - 2026-01-18
17+
18+
### TODO
19+
20+
- Window
21+
22+
<!-- generated by git-cliff -->

0 commit comments

Comments
 (0)