-
Notifications
You must be signed in to change notification settings - Fork 163
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
Showing
2 changed files
with
28 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1,28 @@ | ||
#![feature(hash_raw_entry)] | ||
#![feature(async_closure)] | ||
#[macro_use] | ||
extern crate lazy_static; | ||
|
||
mod array; | ||
mod datatypes; | ||
mod dsl; | ||
#[cfg(feature = "python")] | ||
mod ffi; | ||
mod io; | ||
mod kernels; | ||
#[cfg(feature = "python")] | ||
pub mod python; | ||
mod schema; | ||
mod series; | ||
mod table; | ||
mod utils; | ||
|
||
pub const VERSION: &str = env!("CARGO_PKG_VERSION"); | ||
pub const BUILD_TYPE_DEV: &str = "dev"; | ||
pub const DAFT_BUILD_TYPE: &str = { | ||
let env_build_type: Option<&str> = option_env!("RUST_DAFT_PKG_BUILD_TYPE"); | ||
match env_build_type { | ||
Some(val) => val, | ||
None => BUILD_TYPE_DEV, | ||
} | ||
}; |