Skip to content

Commit

Permalink
fix: import
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanceras committed Mar 11, 2024
1 parent 8c4f8a0 commit a31e1ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/svgbob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ edition = "2021"
nalgebra = "0.32.1"
parry2d = "0.13.5"
once_cell = "1.18.0"
sauron = { version = "0.60.0", default-features = false, features = ["with-jss"] }
#sauron = { path = "../../../sauron", default-features = false, features = ["with-jss"]}
#sauron = { version = "0.60.0", default-features = false, features = ["with-jss"] }
sauron = { path = "../../../sauron", default-features = false, features = ["with-jss"]}
unicode-width = "0.1.9"
itertools = "0.11.0"
pom = { version = "3.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion packages/svgbob/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub use nalgebra;
pub use point::Point;
/// reexport sauron
pub use sauron;
pub use sauron::{Node, Render};
pub use sauron::Node;
pub use settings::Settings;

pub fn to_svg(ascii: &str) -> String {
Expand Down

0 comments on commit a31e1ff

Please sign in to comment.