cbor: rename crate to sk-cbor

In anticipation of publishing to crates.io, which already has a `cbor`
crate.
This commit is contained in:
David Drysdale
2021-06-08 11:26:24 +01:00
committed by kaczmarczyck
parent f2812e4fe2
commit 7719078d46
15 changed files with 26 additions and 16 deletions

View File

@@ -3,6 +3,7 @@ extern crate alloc;
use alloc::vec::Vec;
use libfuzzer_sys::fuzz_target;
use sk_cbor as cbor;
fuzz_target!(|data: &[u8]| {
if let Ok(value) = cbor::read(data) {