forked from 0xProject/OpenZKP
-
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.
Merge branch 'master' into remco/fix/no-deny-warnings
- Loading branch information
Showing
9 changed files
with
518 additions
and
167 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
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,13 @@ | ||
[package] | ||
name = "hex-literal" | ||
version = "0.1.4" | ||
authors = ["Remco Bloemen <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
proc-macro-hack = "0.5" | ||
macros-impl = { path = "../macros_impl" } | ||
|
||
[features] | ||
default = [] | ||
std = [] |
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,11 @@ | ||
#![warn(clippy::all)] | ||
#![deny(warnings)] | ||
#![cfg_attr(not(feature = "std"), no_std)] | ||
|
||
use proc_macro_hack::proc_macro_hack; | ||
|
||
/// Hex literal. | ||
/// | ||
/// (Documentation goes here on the re-export, not in the other crate.) | ||
#[proc_macro_hack] | ||
pub use macros_impl::hex; |
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
Oops, something went wrong.