crates/story/Cargo.toml 🔗
@@ -5,6 +5,10 @@ edition = "2021"
publish = false
license = "GPL-3.0-or-later"
+[lib]
+name = "story"
+path = "src/story.rs"
+
[lints]
workspace = true
Nate Butler created
`crates/story/src/lib.rs` -> `crates/story/src/story.rs`
Release Notes:
- N/A
crates/story/Cargo.toml | 4 ++++
crates/story/src/lib.rs | 3 ---
2 files changed, 4 insertions(+), 3 deletions(-)
@@ -5,6 +5,10 @@ edition = "2021"
publish = false
license = "GPL-3.0-or-later"
+[lib]
+name = "story"
+path = "src/story.rs"
+
[lints]
workspace = true
@@ -1,3 +0,0 @@
-mod story;
-
-pub use story::*;