@bcts/dcbor 1.0.0-alpha.16 → 1.0.0-alpha.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.cjs +789 -474
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +160 -23
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +160 -23
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +789 -474
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +797 -490
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/bignum.ts +334 -0
- package/src/byte-string.ts +17 -17
- package/src/date.ts +11 -11
- package/src/index.ts +10 -0
- package/src/map.ts +23 -23
- package/src/prelude.ts +3 -0
- package/src/set.ts +9 -9
- package/src/tags-store.ts +17 -17
- package/src/tags.ts +46 -0
package/README.md
CHANGED
|
@@ -10,4 +10,4 @@ The current specification of the norms and practices guiding the creation of thi
|
|
|
10
10
|
|
|
11
11
|
## Rust Reference Implementation
|
|
12
12
|
|
|
13
|
-
This TypeScript implementation is based on [bc-dcbor-rust](https://github.com/BlockchainCommons/bc-dcbor-rust) **v0.
|
|
13
|
+
This TypeScript implementation is based on [bc-dcbor-rust](https://github.com/BlockchainCommons/bc-dcbor-rust) **v0.25.1** ([commit](https://github.com/BlockchainCommons/bc-dcbor-rust/tree/8344a256cc858b3a626a89e0b805ef0bda4d3b50)).
|