Skip to content

Commit 99630f3

Browse files
committed
chore: release 0.0.1
1 parent e29c86e commit 99630f3

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,10 @@ The core of why VBARE was designed this way is:
104104
## Implementations
105105

106106
- [TypeScript](./typescript/)
107+
- [npm package: `vbare`](https://www.npmjs.com/package/vbare)
107108
- [Example Code](./typescript/examples/basic/src/migrator.ts)
108109
- [Rust](./rust/)
110+
- [crates.io package: `vbare`](https://crates.io/crates/vbare)
109111
- [Example Code](./rust/examples/basic/src/lib.rs)
110112

111113
([Full list of BARE implementations](https://baremessages.org/))

rust/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- `vbare-gen`: Code generator that parses `.bare` schemas and emits Rust types
66
- `vbare-compiler`: Build-script helper that processes a directory of schemas
77
- `vbare`: Runtime traits for versioned data with helpers to serialize/deserialize across versions
8+
- [crates.io package: `vbare`](https://crates.io/crates/vbare)
89

910
## Quick Start
1011

rust/vbare-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
description = "Compile-time code generation for VBARE (Versioned Binary Application Record Encoding), an extension to BARE with versioned schema evolution"
88

99
[dependencies]
10-
vbare-gen = { path = "../vbare-gen" }
10+
vbare-gen = { path = "../vbare-gen", version = "0.0.1" }
1111
indoc.workspace = true
1212
prettyplease.workspace = true
1313
syn.workspace = true

typescript/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Packages
44

55
- `vbare`: Runtime helpers exposed as the `vbare` package. The primary entry point is `createVersionedDataHandler`, which mirrors the Rust `OwnedVersionedData` helpers.
6+
- [npm package: `vbare`](https://www.npmjs.com/package/vbare)
67
- `@vbare/compiler`: CLI + library published as `@vbare/compiler`. It wraps `@bare-ts/tools` and adds light preprocessing so fixtures compile without extra flags.
78
- `@vbare/example-basic`: End-to-end sample that compiles schemas and wires migrations together. Generated sources live in `examples/basic/dist/` and hand-written logic in `examples/basic/src/`.
89

0 commit comments

Comments
 (0)