2024-04-01 12:52:43 -04:00
|
|
|
// Generates `dev/Cargo.toml` such that it is synced with `info.toml`.
|
2024-04-04 17:16:57 -04:00
|
|
|
// `dev/Cargo.toml` is a hack to allow using `cargo run` to test `rustlings`
|
2024-04-01 12:52:43 -04:00
|
|
|
// during development.
|
|
|
|
|
2024-03-31 20:11:52 -04:00
|
|
|
use anyhow::{bail, Context, Result};
|
|
|
|
use serde::Deserialize;
|
|
|
|
use std::{
|
|
|
|
fs::{self, create_dir},
|
|
|
|
io::ErrorKind,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct Exercise {
|
|
|
|
name: String,
|
|
|
|
path: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct InfoToml {
|
|
|
|
exercises: Vec<Exercise>,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() -> Result<()> {
|
|
|
|
let exercises = toml_edit::de::from_str::<InfoToml>(
|
|
|
|
&fs::read_to_string("info.toml").context("Failed to read `info.toml`")?,
|
|
|
|
)
|
|
|
|
.context("Failed to deserialize `info.toml`")?
|
|
|
|
.exercises;
|
|
|
|
|
|
|
|
let mut buf = Vec::with_capacity(1 << 14);
|
|
|
|
|
2024-04-01 12:52:43 -04:00
|
|
|
buf.extend_from_slice(
|
2024-04-04 17:16:57 -04:00
|
|
|
b"# This file is a hack to allow using `cargo run` to test `rustlings` during development.
|
|
|
|
# You shouldn't edit it manually. It is created and updated by running `cargo run -p gen-dev-cargo-toml`.
|
2024-04-01 12:52:43 -04:00
|
|
|
|
|
|
|
bin = [\n",
|
|
|
|
);
|
2024-03-31 20:11:52 -04:00
|
|
|
|
|
|
|
for exercise in exercises {
|
|
|
|
buf.extend_from_slice(b" { name = \"");
|
|
|
|
buf.extend_from_slice(exercise.name.as_bytes());
|
|
|
|
buf.extend_from_slice(b"\", path = \"../");
|
|
|
|
buf.extend_from_slice(exercise.path.as_bytes());
|
|
|
|
buf.extend_from_slice(b"\" },\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
buf.extend_from_slice(
|
|
|
|
br#"]
|
|
|
|
|
|
|
|
[package]
|
2024-04-05 19:45:54 -04:00
|
|
|
name = "rustlings-dev"
|
2024-03-31 20:11:52 -04:00
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
if let Err(e) = create_dir("dev") {
|
|
|
|
if e.kind() != ErrorKind::AlreadyExists {
|
|
|
|
bail!("Failed to create the `dev` directory: {e}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fs::write("dev/Cargo.toml", buf).context("Failed to write `dev/Cargo.toml`")
|
|
|
|
}
|