cbor: rename crate to sk-cbor
In anticipation of publishing to crates.io, which already has a `cbor` crate.
This commit is contained in:
committed by
kaczmarczyck
parent
f2812e4fe2
commit
7719078d46
@@ -1,6 +1,6 @@
|
||||
|
||||
[package]
|
||||
name = "cbor-fuzz"
|
||||
name = "sk-cbor-fuzz"
|
||||
version = "0.0.0"
|
||||
authors = ["Automatically generated"]
|
||||
publish = false
|
||||
@@ -12,7 +12,7 @@ cargo-fuzz = true
|
||||
[dependencies]
|
||||
libfuzzer-sys = "0.3"
|
||||
|
||||
[dependencies.cbor]
|
||||
[dependencies.sk-cbor]
|
||||
path = ".."
|
||||
|
||||
# Prevent this from interfering with workspaces
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user