- Add an example of usage - Add a minimal README, including the example code - Document public items - Add more info to Cargo.toml
19 lines
505 B
TOML
19 lines
505 B
TOML
[package]
|
|
name = "sk-cbor"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Fabian Kaczmarczyck <kaczmarczyck@google.com>",
|
|
"Guillaume Endignoux <guillaumee@google.com>",
|
|
"Jean-Michel Picod <jmichel@google.com>",
|
|
"David Drysdale <drysdale@google.com>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
description = "CBOR parsing library"
|
|
homepage = "https://github.com/google/OpenSK"
|
|
repository = "https://github.com/google/OpenSK"
|
|
keywords = ["cbor", "serialization", "no_std"]
|
|
categories = ["encoding"]
|
|
|
|
[dependencies]
|