Skip to content

Commit

Permalink
fix/remove std + cargo doc
Browse files Browse the repository at this point in the history
  • Loading branch information
makavity committed Nov 23, 2023
1 parent 5bcd7d6 commit d18e1dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion bake-kdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@ belt-hash = "0.1.1"
#belt-hash = { path = "../../hashes/belt-hash" }

[dev-dependencies]
hex-literal = "0.4.1"
hex-literal = "0.4.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
4 changes: 2 additions & 2 deletions bake-kdf/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
//! # Usage
//! ```rust
//! use bake_kdf::bake_kdf;
//! let x = vec![0x00; 32];
//! let s = vec![0x00; 8];
//! let x = [0x00; 32];
//! let s = [0x00; 8];
//! let c = 0x00;
//! let key = bake_kdf(&x, &s, c).unwrap();
//! ```
Expand Down

0 comments on commit d18e1dd

Please sign in to comment.