mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 04:50:36 +00:00

Updated the Cargo.toml files for test suites and a link in the README to use Rust edition 2021 instead of 2018. This ensures compatibility with the latest Rust features and standards.
20 lines
397 B
TOML
20 lines
397 B
TOML
[package]
|
|
name = "serde_derive_tests_no_std"
|
|
version = "0.0.0"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
libc = { version = "0.2", default-features = false }
|
|
serde = { path = "../../serde", default-features = false }
|
|
serde_derive = { path = "../../serde_derive" }
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[workspace]
|