Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
1.2 KiB
Go
28 lines
1.2 KiB
Go
/*
|
|
Package implementing the CBOR -- Concise Binary Object Notation
|
|
-- http://cbor.io/ -- spec.
|
|
|
|
CBOR is more or less freely interchangable with json: it's schemaless,
|
|
and composed of similar map and array types.
|
|
However, CBOR is binary, length delimited -- and thus very fast to parse,
|
|
and can store binary data without expansion problems -- and also distinguishes
|
|
types like integer, string, float, and bytes all clearly from each other.
|
|
|
|
The `cbor.Marshal` and `cbor.Unmarshal` functions are the quickest way
|
|
to convert your Go objects to and from serial CBOR.
|
|
|
|
The `cbor.NewMarshaller` and `cbor.NewUmarshaller` functions give a little
|
|
more control. If performance is important, prefer these; recycling
|
|
the marshaller instances will significantly cut down on memory allocations
|
|
and improve performance.
|
|
|
|
The `*Atlased` variants of constructors allow you set up marshalling with
|
|
an `refmt/obj/atlas.Atlas`, unlocking all of refmt's advanced features
|
|
and custom object mapping powertools.
|
|
|
|
The `cbor.Encoder` and `cbor.Decoder` types implement the low-level functionality
|
|
of converting serial CBOR byte streams into refmt Token streams.
|
|
Users don't usually need to use these directly.
|
|
*/
|
|
package cbor
|