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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Continuous integration

env:
RUSTFLAGS: '--deny warnings'

jobs:
ci-linux:
runs-on: ubuntu-latest
Expand All @@ -21,7 +21,7 @@ jobs:

include:
# Test MSRV
- rust: 1.36.0
- rust: 1.40.0
TARGET: x86_64-unknown-linux-gnu

# Test nightly but don't fail
Expand Down
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["serde", "json"]
license = "MIT OR Apache-2.0"
name = "serde-json-core"
readme = "README.md"
repository = "https://japaric.github.io/serde-json-core/serde_json_core"
repository = "https://github.com/rust-embedded-community/serde-json-core"
version = "0.1.0"

[dependencies]
Expand All @@ -24,6 +24,3 @@ serde_derive = "1.0.80"
[features]
custom-error-messages = []
std = ["serde/std"]

[badges]
maintenance = { status = "looking-for-maintainer" }
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@

[`serde-json`]: https://crates.io/crates/serde_json

# Status
This project is developed and maintained by the [rust-embedded-community].

This crate is currently being passively maintained by [@japaric]. I (@japaric)
will be merging PRs (bug fixes and features) as they appear without any
long-term / design consideration. If you would like to take over the steering
wheel (i.e. take ownership of this crate) send me an e-mail (see my GitHub
profile).
[rust-embedded-community]: https://github.com/rust-embedded-community/meta

[@japaric]: https://github.com/japaric
## [Documentation](https://docs.rs/serde-json-core)

## [Documentation](https://japaric.github.io/serde-json-core/serde_json_core)
## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.40.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License

Expand Down
13 changes: 2 additions & 11 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@
//! This version of [`serde-json`] is aimed at applications that run on resource constrained
//! devices.
//!
//! # Status
//!
//! This crate is currently being passively maintained by [@japaric]. I (@japaric) will be merging
//! PRs (bug fixes and features) as they appear without any long-term / design consideration. If you
//! would like to take over the steering wheel (i.e. take ownership of this crate) send me an e-mail
//! (see my GitHub profile).
//!
//! [@japaric]: https://github.com/japaric
//!
//! # Current features
//!
//! - The error type is a simple C like enum (less overhead, smaller memory footprint)
Expand Down Expand Up @@ -57,9 +48,9 @@
//! - Like the dynamic [`Value`](https://docs.rs/serde_json/1.0.11/serde_json/enum.Value.html)
//! type
//!
//! # MSRV
//! # Minimum Supported Rust Version (MSRV)
//!
//! This crate is guaranteed to compile on stable Rust 1.31.0 and up. It *might* compile with older
//! This crate is guaranteed to compile on stable Rust 1.40.0 and up. It *might* compile with older
//! versions but that may change in any new patch release.
#![deny(missing_docs)]
Expand Down