Skip to content

Commit ba2dff7

Browse files
authored
Merge pull request #22 from orual/rewrite
Rewrite done
2 parents 104a48f + 12e49b7 commit ba2dff7

File tree

633 files changed

+150767
-43913
lines changed

Some content is hidden

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

633 files changed

+150767
-43913
lines changed

.claude/settings.json

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

.config/nextest.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
[profile.default]
3+
final-status-level = "slow"
4+
5+
[profile.ci]
6+
# Don't fail fast in CI to run the full test suite.
7+
fail-fast = false
8+
slow-timeout = { period = "60s", terminate-after = 1 }

.github/workflows/ci.yml

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
11
on:
2-
# Run only when pushing to main branch, and making PRs
3-
push:
4-
branches:
5-
- main
6-
pull_request:
2+
# Run only when pushing to main branch, and making PRs
3+
push:
4+
branches:
5+
- main
6+
- rewrite
7+
pull_request:
78
name: CI
89

910
jobs:
10-
check:
11-
name: Rust project
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v2
15-
- name: Install latest nightly
16-
uses: actions-rs/toolchain@v1
17-
with:
18-
toolchain: stable
19-
override: true
20-
components: rustfmt, clippy
21-
22-
# `cargo check` command here will use installed `nightly`
23-
# as it is set as an "override" for current directory
24-
25-
- name: Run cargo check
26-
uses: actions-rs/cargo@v1
27-
with:
28-
command: check
29-
# - name: Run cargo lib tests
30-
# uses: actions-rs/cargo@v1
31-
# with:
32-
# command: test
33-
# args: --lib
11+
check:
12+
name: Rust project
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Install latest nightly
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
20+
override: true
21+
components: rustfmt, clippy
22+
- name: Install cargo nextest
23+
uses: taiki-e/install-action@nextest
24+
- name: Run cargo check
25+
uses: actions-rs/cargo@v1
26+
with:
27+
command: check
28+
- name: Test with latest nextest release
29+
uses: actions-rs/cargo@v1
30+
env:
31+
CARGO_TERM_COLOR: always
32+
with:
33+
command: nextest
34+
args: run --all-features --profile ci

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ CLAUDE.md.local
1414
mcp-wrapper.sh
1515
/logs
1616
**/**.db
17+
**/**.db-**
1718
**.txt
1819
**.car
1920
**.log.**
2021
**.json
22+
!**/.sqlx/*.json
2123
**.sql
24+
!**/migrations/*.sql
2225
**.surql
26+
**/**.output

.sqlx/query-10e5e0315276347043124548a8e2bbc83b4e6314bc1b1251aea2aef40cd3dad9.json

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

.sqlx/query-1c334878333b5ffb09434319e47a3205e1756082e8d66bcd23340d31d32f619f.json

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

.sqlx/query-28076aa4f19efa9cf79fa6b8a20a20e573baf4df20cddf98a7126b31c1bc0765.json

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

.sqlx/query-2d97c275b95d40cd17b8e4cdac79a7589ef542b9419393ba2bef976b19d3b406.json

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

.sqlx/query-45e6b186ad62fe3223c12fbc50cc0c8b56a82dc5ab07f541d009587224165a5a.json

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

.sqlx/query-6c6378bce095456c7c44d5a05aad1c40ecefc791d66ab4f8365933f1b499cda3.json

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

0 commit comments

Comments
 (0)