diff --git a/crates/story/Cargo.toml b/crates/story/Cargo.toml index 559df64aeb..ca697991ba 100644 --- a/crates/story/Cargo.toml +++ b/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 diff --git a/crates/story/src/lib.rs b/crates/story/src/lib.rs deleted file mode 100644 index a9998e65a8..0000000000 --- a/crates/story/src/lib.rs +++ /dev/null @@ -1,3 +0,0 @@ -mod story; - -pub use story::*;