Skip to content

Commit a6088f5

Browse files
authored
Merge pull request #7 from dev-five-git/exporter
Exporter
2 parents 9f3e70c + b78aea7 commit a6088f5

34 files changed

+1043
-96
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"crates/vespertide-exporter/Cargo.toml":"Patch","crates/vespertide-macro/Cargo.toml":"Patch","crates/vespertide/Cargo.toml":"Patch","crates/vespertide-core/Cargo.toml":"Patch","crates/vespertide-planner/Cargo.toml":"Patch","crates/vespertide-config/Cargo.toml":"Patch","crates/vespertide-cli/Cargo.toml":"Patch","crates/vespertide-query/Cargo.toml":"Patch"},"note":"Implement exporter","date":"2025-12-11T14:41:13.513253700Z"}

.github/workflows/CI.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
components: clippy, rustfmt
3636
- name: Build
3737
run: cargo check
38+
- name: Lint
39+
run: cargo clippy --all-targets --all-features -- -D warnings
3840
- name: Test
3941
run: |
4042
# rust coverage issue
@@ -47,14 +49,14 @@ jobs:
4749
echo 'merge_derives = true' >> .rustfmt.toml
4850
echo 'use_small_heuristics = "Default"' >> .rustfmt.toml
4951
cargo fmt
50-
cargo tarpaulin --out Lcov
52+
cargo tarpaulin --out Lcov Stdout
5153
- name: Upload to codecov.io
5254
uses: codecov/codecov-action@v5
5355
with:
5456
token: ${{ secrets.CODECOV_TOKEN }}
5557
fail_ci_if_error: true
5658
files: lcov.info
57-
if: github.ref_name == 'main'
59+
if: github.ref == 'refs/heads/main'
5860

5961
# publish
6062
changepacks:
@@ -75,4 +77,4 @@ jobs:
7577
with:
7678
publish: true
7779
env:
78-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
80+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ vespertide-config = { path = "crates/vespertide-config", version = "0.1.2" }
1515
vespertide-macro = { path = "crates/vespertide-macro", version = "0.1.2" }
1616
vespertide-planner = { path = "crates/vespertide-planner", version = "0.1.2" }
1717
vespertide-query = { path = "crates/vespertide-query", version = "0.1.2" }
18+
vespertide-exporter = { path = "crates/vespertide-exporter", version = "0.1.2" }

crates/vespertide-cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ vespertide-config = { workspace = true }
2121
vespertide-core = { workspace = true }
2222
vespertide-planner = { workspace = true }
2323
vespertide-query = { workspace = true }
24+
vespertide-exporter = { workspace = true }
2425

2526
[dev-dependencies]
2627
tempfile = "3"

0 commit comments

Comments
 (0)