schemars icon indicating copy to clipboard operation
schemars copied to clipboard

Project Status and Road to 1.0

Open GREsau opened this issue 4 years ago • 13 comments
trafficstars

I've been working on Schemars for a little over 2 years now - it's always just been a personal project of mine, which does mean its progress depends on my free time and motivation. But I am certainly still here, and plan to continue working on it!

With that in mind, I thought it was worth recording some thoughts about where I see the project going, and specifically what I think is necessary to reach something I can could version 1.0.

I'd love to reach a point where Rust library authors can implement JsonSchema on their public types (probably depending on feature flags), much like is commonly done for serde::Serialize/Deserialize. But I'm not comfortable encouraging this too much yet, as I don't think the Schemars API is quite yet stable enough - there are still some enhancements and changes that I would love to see implemented which may require breaking changes to the current API. So, to be comfortable in releasing Schemars v1.0, I'd like to be reasonably confident that all desired enhancements can be implemented without breaking changes. Ideally, there would never need to be a v2.0. Off the top of my head, I would like to have solutions for:

  • ~generation of separate schemas for serialization/deserialization (#48)~ DONE in v1.0.0-alpha.15
  • ~differentiation of distinct types with the same name (#62)~ DONE in v0.8.14
  • ~handling of different JSON schema versions/dialects (and how to handle future JSON schema versions), including JSON schema draft 2020-12 / openapi 3.1~ DONE in v1.0.0-alpha.6
  • easier manual building of schemas - I envision this looking a bit like the debug_* helper methods on Formatter that are useful for manually implementing Debug

Note that these do not necessarily have to be implemented for 1.0, I just need to know that they could be done without breaking changes. There are a few ways to achieve this - it could be a proof-of-concept implementation, or just an API proposal with a vague idea of how that API could be implemented.

⚠️ Bear in mind that until Schemars reaches 1.0, breaking changes are likely! Though of course, I prefer to avoid them where reasonably possible. Any breaking changes will continue to be documented in the changelog, and never released in a semver patch version change.

There are some more "indirect" improvements I'd like to get done, like writing up some contributor guidelines to make it easier for people to create useful PRs. I'm also interested in looking into the performance of Schemars, in particular the compile-time performance, including #[derive(JsonSchema)]. I assume that the actual schema generation at runtime is rarely in a hot path, so runtime performance is less of a concern (but not unimportant!), I would be very interested to hear if you don't agree.

And finally, I'd like to take this opportunity to thank the community contributors - all of the bug reports, enhancement suggestions, and code contributions have been a massive help, so thank you all! ❤️

GREsau avatar Sep 27 '21 13:09 GREsau

I noticed that progress e.g. on the reviewing of PR's seams to have stagnated. I don't want to complain about that, because this is obviously a project you are developing in your free time, but I wanted to offer my help with those tasks, as

I use schemars in my projects and would prefer contributing to the original crate instead of forking it to implement the necessary features.

ModProg avatar Jan 18 '23 16:01 ModProg

Note there has been an update worth reading at https://github.com/GREsau/schemars/issues/225#issuecomment-1685352926 for anyone wanting to knowing the current status and plans.

jayvdb avatar Aug 21 '23 09:08 jayvdb

Please see https://github.com/GREsau/schemars/issues/242 for a proposal on how schemars's Schema type may be redefined in a way that's flexible enough to support multiple versions/dialects of JSON Schema. It's certainly not as formal as a Rust RFC, but I wanted to put something out for feedback before investing substantial time into implementing it 🙂

GREsau avatar Sep 02 '23 17:09 GREsau