We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b53d24 + 4d1485f commit 7c69abfCopy full SHA for 7c69abf
Cargo.toml
@@ -4,10 +4,6 @@ version = "0.1.0"
4
authors = ["The Rust Project Developers"]
5
edition = "2021"
6
7
-[[bin]]
8
-name = "blog"
9
-path = "src/blog.rs"
10
-
11
[dependencies]
12
color-eyre = "=0.6.2"
13
eyre = "=0.6.12"
src/blog.rs renamed to src/bin/blog.rs
@@ -1,10 +1,7 @@
1
-#[path = "lib.rs"]
2
-mod lib;
3
pub fn main() -> eyre::Result<()> {
color_eyre::install()?;
- lib::main()?;
+ blog::main()?;
println!(
"blog has been generated; you can now serve its content by running\n\
0 commit comments