Skip to content

Commit

Permalink
fix exports (#74)
Browse files Browse the repository at this point in the history
* fix exports

* optional dep
  • Loading branch information
zachcp authored Dec 8, 2024
1 parent 74b51a3 commit 0b7dda9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ferritin-amplify/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
//!
//!
mod amplify;
pub use amplify::amplify::{ModelOutput, AMPLIFY};
pub use amplify::amplify::AMPLIFY;
pub use amplify::config::AMPLIFYConfig;
pub use amplify::outputs::ModelOutput;
2 changes: 1 addition & 1 deletion ferritin-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license.workspace = true
description.workspace = true

[dependencies]
ferritin-pymol = { path = "../ferritin-pymol" }
ferritin-pymol = { path = "../ferritin-pymol", optional = true }
pdbtbx.workspace = true
itertools.workspace = true
lazy_static = "1.5.0"
Expand Down

0 comments on commit 0b7dda9

Please sign in to comment.