Skip to content

Commit

Permalink
Public fields for Crate struct
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 9, 2016
1 parent 45cc849 commit 1271b29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/krate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ use super::*;

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Crate {
shebang: Option<String>,
attrs: Vec<Attribute>,
items: Vec<Item>,
pub shebang: Option<String>,
pub attrs: Vec<Attribute>,
pub items: Vec<Item>,
}

#[cfg(feature = "parsing")]
Expand Down

0 comments on commit 1271b29

Please sign in to comment.