From 87d947a54fad81b95b983fefe799d25bc5b4c951 Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Fri, 11 Dec 2020 10:13:26 +0100 Subject: [PATCH] Update crate information after take over by REC --- .github/workflows/ci.yml | 4 ++-- Cargo.toml | 5 +---- README.md | 15 +++++++-------- src/lib.rs | 13 ++----------- 4 files changed, 12 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95a2233db..13bdbfe5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ name: Continuous integration env: RUSTFLAGS: '--deny warnings' - + jobs: ci-linux: runs-on: ubuntu-latest @@ -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 diff --git a/Cargo.toml b/Cargo.toml index c0f9e9ef1..4040596f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] @@ -24,6 +24,3 @@ serde_derive = "1.0.80" [features] custom-error-messages = [] std = ["serde/std"] - -[badges] -maintenance = { status = "looking-for-maintainer" } diff --git a/README.md b/README.md index c98bab096..2a3735ec2 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index 1f21e9852..465168705 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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) @@ -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)]