We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe6835a commit dd49391Copy full SHA for dd49391
.github/workflows/rust.yml
@@ -16,6 +16,10 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v3
19
+ - name: Format
20
+ run: cargo fmt --all -- --check
21
+ - name: Clippy
22
+ run: cargo clippy --workspace --all-targets --all-features -- -D warnings
23
- name: Build
24
run: cargo build --verbose
25
- name: Run tests
Cargo.toml
@@ -31,7 +31,6 @@ fast-float = "0.2.0"
31
nom = "7.1.3"
32
ordered-float = { version = "3.6.0", default-features = false }
33
rand = { version = "0.8.5", features = ["small_rng"] }
34
-serde = { version = "1.0.152", features = ["derive", "rc"] }
35
serde_json = { version = "1.0.95", default-features = false, features = [
36
"preserve_order",
37
] }
0 commit comments