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
3 changes: 0 additions & 3 deletions .evergreen/check-clippy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ CLIPPY_VERSION=1.89.0
rustup install $CLIPPY_VERSION

cargo +$CLIPPY_VERSION clippy --all-targets --all-features -p bson -- -D warnings

cd serde-tests
cargo +$CLIPPY_VERSION clippy --all-targets --all-features -p serde-tests -- -D warnings
2 changes: 0 additions & 2 deletions .evergreen/check-rustfmt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ set -o errexit

. ~/.cargo/env
cargo +nightly fmt -- --check

cd serde-tests && cargo +nightly fmt -- --check
3 changes: 0 additions & 3 deletions .evergreen/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@ set -o errexit
RUST_BACKTRACE=1 cargo test --all-targets
# Test with all features and including doctests
RUST_BACKTRACE=1 cargo test --all-features

cd serde-tests
RUST_BACKTRACE=1 cargo test
35 changes: 35 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ exclude = [
"etc/**",
"examples/**",
"fuzz/**",
"serde-tests/**",
"src/tests/**",
"rustfmt.toml",
".travis.yml",
Expand Down Expand Up @@ -89,6 +88,7 @@ serde_path_to_error = "0.1.16"
serde_json = { version = "1", features = ["preserve_order"] }
chrono = { version = "0.4", features = ["serde", "clock", "std"], default-features = false }
jiff = { version = "0.2", default-features = false, features = ["std"] }
rmp-serde = "0.15"

[package.metadata.docs.rs]
all-features = true
Expand Down
Loading