summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2024-03-11 17:15:05 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2024-03-11 17:15:05 +0800
commita31e1ff5d5047cb0684c3ecbe59e2bdcfe86969a (patch)
treee09d4c4347077fe1352568bb52127e7c62cb3ced
parent8c4f8a015f5ccca894612146c81d1fc6f05e6881 (diff)
fix: importHEADmaster
-rw-r--r--packages/svgbob/Cargo.toml4
-rw-r--r--packages/svgbob/src/lib.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/svgbob/Cargo.toml b/packages/svgbob/Cargo.toml
index 2737d5a..56616a5 100644
--- a/packages/svgbob/Cargo.toml
+++ b/packages/svgbob/Cargo.toml
@@ -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" }
diff --git a/packages/svgbob/src/lib.rs b/packages/svgbob/src/lib.rs
index 6d4f329..eda25aa 100644
--- a/packages/svgbob/src/lib.rs
+++ b/packages/svgbob/src/lib.rs
@@ -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 {