Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minimum dependency versions and features and check them in CI #557

Merged
merged 4 commits into from
Jan 27, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Enable std feature for serde_json
  • Loading branch information
juntyr committed Jan 25, 2025
commit f1fbada52c60d4d0a927074308fb03dc7dcea717
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -38,7 +38,8 @@ unicode-ident = { version = "1.0", default-features = false }
[dev-dependencies]
serde = { version = "1.0.181", default-features = false, features = ["std", "derive"] }
serde_bytes = { version = "0.11", default-features = false, features = ["std"] }
serde_json = { version = "1.0", default-features = false }
# serde_json supports the std feature from 1.0.60 onwards
serde_json = { version = "1.0.60", default-features = false, features = ["std"] }
option_set = { version = "0.2", default-features = false }
typetag = { version = "0.2", default-features = false }
bytes = { version = "1.3", default-features = false, features = ["serde"] }
Loading