From e6c53fafdb261a6eb5873a2bf0d4016f48cbb02d Mon Sep 17 00:00:00 2001 From: Chris Hodapp Date: Tue, 27 Jul 2021 13:41:44 -0400 Subject: [PATCH] Misc notes in README; minor fix in tests --- README.md | 6 ++++++ src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ea6c499..3ae240f 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ Experiments in procedural meshes in Rust More detailed docs and examples forthcoming. +Due to some issues explained a little bit below and a little bit in +other blog posts, I'm now treating this as maintenance-only and not as +an active project. + +(TODO: Link to these posts) + ## General Notes & History This particular code base was started around 2019 December diff --git a/src/lib.rs b/src/lib.rs index 295e601..4a36e68 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -72,7 +72,7 @@ mod tests { } #[test] - fn tree_thing() { + fn tree_thing1() { let name = "tree_thing"; println!("---------------------------------------------------"); let b = examples::TreeThing::new(0.6, 10);