Stable Hash: Add feature, adjust CI, modify build.rs, add new API for accessing and setting the ahash seed in config.rs, make config.rs public

This commit is contained in:
l1npengtul
2022-10-31 22:14:09 +09:00
parent e75709f627
commit 3e6a3a2759
8 changed files with 157 additions and 23 deletions

View File

@@ -71,6 +71,8 @@
#![allow(clippy::negative_feature_names)]
#![allow(clippy::module_inception)]
#![cfg_attr(feature = "stable_hash", feature(once_cell))]
#[cfg(feature = "no_std")]
extern crate alloc;
@@ -83,7 +85,7 @@ use std::prelude::v1::*;
// Internal modules
mod api;
mod ast;
mod config;
pub mod config;
mod engine;
mod eval;
mod func;