~williewillus/racket-rfc8949

662aca9314888cb478ffda8237b139c3dfdbe0e5 — Vincent Lee 3 years ago 44c8873
Rename collection (and racket package) to `cbor`
2 files changed, 3 insertions(+), 3 deletions(-)

M README.md
M info.rkt
M README.md => README.md +2 -2
@@ 1,6 1,6 @@
# rfc8949
# cbor

This package implements RFC 8949 (Concise Binary Object Representation) serialization routines for Racket.
This collection, `cbor`, implements RFC 8949 (Concise Binary Object Representation) serialization routines for Racket.

The API is similar to the builtin `json` module, and provides two main functions:
`cbor-read` to read a CBOR value from a port, and `cbor-write` to write a CBOR value to a port.

M info.rkt => info.rkt +1 -1
@@ 1,5 1,5 @@
#lang info
(define collection "rfc8949")
(define collection "cbor")
(define version "0.1")
(define deps '("base"))
(define build-deps '("racket-doc"