chore: remove cfg from lib

This commit is contained in:
Dmitriy Pleshevskiy 2021-04-21 23:51:55 +03:00
parent 56ea9360d8
commit fbd37930a7
1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
config! {
#![config(unwrap)]
TEST => "hello",
static MAIN => "main",
TEST2 => "test",
CONCAT < (
TESTTTT => "hellooooooo",
" ",
"world",
),
NAMESPACE {
TEST: String => "test",
NAMESPACE {
TEST: &'static str => "test",
#[env_prefix = "HELLO_"]
NAMESPACE {
TEST: &'static str => "test",
#[cfg(not(target_os = "linux"))]
#[env_prefix = "WORLD_"]
NAMESPACE {
#[env_name = "TEST_TEST_TEST"]
TEST: &'static str => "test",
}
}
}
}
}