mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-20 02:10:18 +00:00
feat(sprout): introduce no_std sprout which uses stable rust
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
//! Sprout configuration descriptions.
|
||||
//! This crate provides all the configuration structures for Sprout.
|
||||
#![no_std]
|
||||
extern crate alloc;
|
||||
|
||||
use crate::actions::ActionDeclaration;
|
||||
use crate::drivers::DriverDeclaration;
|
||||
@@ -7,8 +9,9 @@ use crate::entries::EntryDeclaration;
|
||||
use crate::extractors::ExtractorDeclaration;
|
||||
use crate::generators::GeneratorDeclaration;
|
||||
use crate::phases::PhasesConfiguration;
|
||||
use alloc::collections::BTreeMap;
|
||||
use alloc::string::String;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::collections::BTreeMap;
|
||||
|
||||
pub mod actions;
|
||||
pub mod drivers;
|
||||
|
||||
Reference in New Issue
Block a user