diff --git a/Cargo.toml b/Cargo.toml index f0a3fea..c438b9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obfstr" -version = "0.2.4" +version = "0.2.5" edition = "2018" license = "MIT" diff --git a/build.rs b/build.rs index 8fce619..b812f39 100644 --- a/build.rs +++ b/build.rs @@ -1,9 +1,6 @@ use std::env; fn main() { - // "Forgive me, Father, for I have sinned" - println!("cargo:rustc-env=RUSTC_BOOTSTRAP=1"); - // Accept external source of randomness println!("cargo:rerun-if-env-changed=OBFSTR_SEED"); diff --git a/src/lib.rs b/src/lib.rs index 8f3d998..167a06e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,6 @@ Compiletime string constant obfuscation. */ -#![feature(min_const_generics)] #![no_std] use core::{char, fmt, ops, ptr, str};