Release independent packages

preserves@3.990.1
preserves-schema@3.990.1

Generated by cargo-workspaces
This commit is contained in:
Tony Garnock-Jones 2023-10-27 11:42:32 +02:00
parent 130e58a3e1
commit a2cb071f01
3 changed files with 20 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "preserves-schema"
version = "3.990.0"
version = "3.990.1"
authors = ["Tony Garnock-Jones <tonyg@leastfixedpoint.com>"]
edition = "2018"
description = "Implementation of Preserves Schema code generation and support for Rust."

View File

@ -1,6 +1,6 @@
[package]
name = "preserves"
version = "3.990.0"
version = "3.990.1"
authors = ["Tony Garnock-Jones <tonyg@leastfixedpoint.com>"]
edition = "2018"
description = "Implementation of the Preserves serialization format via serde."

View File

@ -0,0 +1,18 @@
```text
Value = Atom
| Compound
| Embedded
Atom = Boolean
| Float
| Double
| SignedInteger
| String
| ByteString
| Symbol
Compound = Record
| Sequence
| Set
| Dictionary
```