Skip to content

Commit

Permalink
Prepare to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
pietgeursen committed Jan 5, 2021
1 parent 4095f2f commit afd4281
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ name = "yamf-hash"
version = "0.1.0"
authors = ["Piet Geursen <[email protected]>"]
edition = "2018"
repository = "https://github.com/bamboo-rs/yamf-hash"
description = "Encode and decode yamf-hashes"
license = "AGPL-3.0"

[features]
default = ["std"]
std = ["varu64/std", "hex/std"]

[dependencies]
arrayvec = "0.5.2"
arrayvec = {version = "0.5.2", default-features = false }
blake2b_simd = { version = "0.5.11", default-features = false }
hex = { version = "0.4", default-features = false }
serde = { version = "1.0", default-features = false , features = ["derive"] }
Expand Down
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

//! yamf-hash
//!
//! Encode and decode [yamf-hashes](https://github.com/AljoschaMeyer/yamf-hash)
//!
#![cfg_attr(not(feature = "std"), no_std)]

//#[cfg(not(feature = "std"))]
Expand Down

0 comments on commit afd4281

Please sign in to comment.