Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,9 @@ jobs:
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Clippy (all features)
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --workspace --verbose
- name: Test (all features)
run: cargo test --workspace --all-features --verbose
46 changes: 43 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ directories = "5"
sha2 = "0.10"
time = { version = "0.3", features = ["formatting"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
ureq = "2"

# CLI
anyhow = "1"
Expand All @@ -51,6 +52,7 @@ ltk_meta = "0.6"
# dev
tempfile = "3"
pollster = "0.4"
tokio = { version = "1", features = ["rt", "macros", "net", "time"] }

[workspace.dependencies.plotters]
version = "0.3"
Expand Down
8 changes: 8 additions & 0 deletions crates/ltk_mimir_cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ serde_json.workspace = true
sha2.workspace = true
thiserror.workspace = true
time.workspace = true
ureq = { workspace = true, optional = true }
reqwest = { workspace = true, optional = true }

[features]
default = []
ureq = ["dep:ureq"]
reqwest = ["dep:reqwest"]

[dev-dependencies]
pollster.workspace = true
tempfile.workspace = true
tokio.workspace = true

[lints]
workspace = true
Loading
Loading