Skip to content

Commit c82d9b2

Browse files
authored
Merge pull request #42 from dev-five-git/support-auto-default
Support auto default
2 parents 331e9ac + aea2975 commit c82d9b2

File tree

46 files changed

+4074
-1761
lines changed

Some content is hidden

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

46 files changed

+4074
-1761
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"crates/vespertide-planner/Cargo.toml":"Patch","crates/vespertide/Cargo.toml":"Patch","crates/vespertide-macro/Cargo.toml":"Patch","crates/vespertide-exporter/Cargo.toml":"Patch","crates/vespertide-cli/Cargo.toml":"Patch","crates/vespertide-loader/Cargo.toml":"Patch","crates/vespertide-core/Cargo.toml":"Patch","crates/vespertide-config/Cargo.toml":"Patch","crates/vespertide-naming/Cargo.toml":"Patch","crates/vespertide-query/Cargo.toml":"Patch"},"note":"Fix export enum","date":"2025-12-24T10:20:07.135349400Z"}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"crates/vespertide-loader/Cargo.toml":"Patch","crates/vespertide-config/Cargo.toml":"Patch","crates/vespertide-exporter/Cargo.toml":"Patch","crates/vespertide-cli/Cargo.toml":"Patch","crates/vespertide-macro/Cargo.toml":"Patch","crates/vespertide-naming/Cargo.toml":"Patch","crates/vespertide-query/Cargo.toml":"Patch","crates/vespertide-core/Cargo.toml":"Patch","crates/vespertide/Cargo.toml":"Patch","crates/vespertide-planner/Cargo.toml":"Patch"},"note":"Wrap ' for default","date":"2025-12-24T10:08:59.674841400Z"}

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build
3737
run: cargo check
3838
- name: Lint
39-
run: cargo clippy --all-targets --all-features -- -D warnings
39+
run: cargo clippy --all-targets --all-features -- -D warnings && cargo fmt --check
4040
- name: Test
4141
run: |
4242
# rust coverage issue

Cargo.lock

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

crates/vespertide-cli/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
src/models
1+
src/models
2+
models
3+
migrations

crates/vespertide-cli/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ anyhow = "1"
1414
clap = { version = "4", features = ["derive"] }
1515
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
1616
colored = "3"
17+
dialoguer = "0.11"
1718
serde_json = "1"
1819
serde_yaml = "0.9"
1920
schemars = "1.1"
@@ -34,3 +35,6 @@ predicates = "3"
3435
[[bin]]
3536
name = "vespertide"
3637
path = "src/main.rs"
38+
39+
[lints.rust]
40+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }

crates/vespertide-cli/migrations/0001_test_message.json

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

crates/vespertide-cli/models/test_table.json

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

0 commit comments

Comments
 (0)