-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21a55bf
commit 2562066
Showing
13 changed files
with
57 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,11 @@ members = [ | |
"macros", | ||
"digestible", | ||
] | ||
resolver = "2" | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.2.2" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Wyatt Jacob Herkamp <[email protected]>"] | ||
repository = "https://github.com/wyatt-herkamp/digestible" | ||
edition="2021" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "digestible" | ||
version = "0.2.1" | ||
edition = "2021" | ||
authors = ["Wyatt Herkamp <[email protected]>"] | ||
version.workspace=true | ||
edition.workspace=true | ||
authors.workspace=true | ||
description = "A more dynamic Hash and Hasher trait for Rust" | ||
license = "MIT OR Apache-2.0" | ||
license.workspace=true | ||
categories = ["cryptography","no-std"] | ||
keywords = ["digest", "crypto", "hash"] | ||
documentation = "https://docs.rs/digestible" | ||
|
@@ -16,7 +16,7 @@ rust-version="1.70" | |
[dependencies] | ||
digest_0_10 = {package = "digest", version = "0.10", optional = true } | ||
byteorder = "1" | ||
digestible-macros= {path="../macros",optional = true, version = "0.2.1" } | ||
digestible-macros= {path="../macros",optional = true, version = "0.2.2" } | ||
base64 = { version = "0.21", optional = true } | ||
bytes = { version = "1" , optional = true} | ||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/*! | ||
Exports from core that are used in the macro | ||
*/ | ||
|
||
pub use core::any::type_name; | ||
pub use core::hash::{Hash, Hasher}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "digestible-macros" | ||
version = "0.2.1" | ||
edition = "2021" | ||
authors = ["Wyatt Herkamp <[email protected]>"] | ||
version.workspace=true | ||
edition.workspace=true | ||
authors.workspace=true | ||
description = "Macros for generating digest implementations" | ||
license = "MIT OR Apache-2.0" | ||
license.workspace=true | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
mod consts; | ||
mod paths; | ||
mod container_attrs; | ||
mod expand_enum; | ||
mod expand_struct; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters