mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
adapt to changes in rtfm-syntax
This commit is contained in:
parent
1f1cf84ab4
commit
5824f837e1
1 changed files with 2 additions and 3 deletions
|
@ -1,14 +1,13 @@
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use quote::Tokens;
|
use syn::{Ident, Path};
|
||||||
use syn::Ident;
|
|
||||||
use syntax::check::{self, Idle, Init};
|
use syntax::check::{self, Idle, Init};
|
||||||
use syntax::{self, Idents, Statics};
|
use syntax::{self, Idents, Statics};
|
||||||
|
|
||||||
use syntax::error::*;
|
use syntax::error::*;
|
||||||
|
|
||||||
pub struct App {
|
pub struct App {
|
||||||
pub device: Tokens,
|
pub device: Path,
|
||||||
pub idle: Idle,
|
pub idle: Idle,
|
||||||
pub init: Init,
|
pub init: Init,
|
||||||
pub resources: Statics,
|
pub resources: Statics,
|
||||||
|
|
Loading…
Reference in a new issue