Skip to content

Commit

Permalink
fix: rename project for macos issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Feb 22, 2021
1 parent 7f768a4 commit b2686ec
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions psa/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
pub mod module;
pub mod project;
pub mod psa_facet;
pub mod psa_library;
pub mod psa_module;
pub mod psa_project;
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions psa/src/project.rs → psa/src/psa_project.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::module::Module;
use crate::psa_module::Module;

pub struct Project {
pub name: String,
Expand All @@ -8,7 +8,7 @@ pub struct Project {

#[cfg(test)]
mod tests {
use crate::project::Project;
use crate::psa_project::Project;

#[test]
fn should_create_project() {
Expand Down

0 comments on commit b2686ec

Please sign in to comment.