Skip to content

Commit fd50bc0

Browse files
committed
πŸŽ‚ Project initialized!
0 parents  commit fd50bc0

File tree

14 files changed

+473
-0
lines changed

14 files changed

+473
-0
lines changed

β€Ž.editorconfigβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[*]
2+
charset = utf-8
3+
4+
5+
[*.pest]
6+
indent_style = space
7+
indent_size = 4
8+
9+
[*.toml]
10+
indent_style = space
11+
indent_size = 4

β€Ž.github/workflows/rust.ymlβ€Ž

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
os: [ubuntu-latest, macos-latest, windows-latest]
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Instal LLVM
18+
run: choco install -y llvm
19+
if: runner.os == 'Windows'
20+
- name: Build
21+
run: cargo build --release
22+
- name: Tests
23+
run: cargo test --release

β€Ž.gitignoreβ€Ž

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# OS
2+
.DS_Store/**/*
3+
4+
# IDE
5+
.vscode/**/*
6+
.vs/**/*
7+
.idea/**/*
8+
*.iml
9+
10+
# Rust
11+
target/**/*
12+
Cargo.lock

β€ŽCargo.tomlβ€Ž

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[workspace]
2+
members = ["projects/*"]
3+
default-members = [
4+
"projects/sub_projects",
5+
]
6+
exclude = [
7+
"projects/.DS_Store",
8+
]
9+
10+
[profile.release]
11+
lto = true
12+
panic = "abort"

0 commit comments

Comments
Β (0)