From 4c4851784900049cfad5206816ec4d47a3982120 Mon Sep 17 00:00:00 2001 From: Scott Olesen Date: Wed, 4 Feb 2026 15:31:15 -0500 Subject: [PATCH 1/3] docs: small typo and whitespace --- docs/book/src/get-started.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/book/src/get-started.md b/docs/book/src/get-started.md index c207ac5b..c475d0dd 100644 --- a/docs/book/src/get-started.md +++ b/docs/book/src/get-started.md @@ -10,13 +10,11 @@ Execute the following commands to create a new Rust project called `ixa_model`. cargo new --bin ixa_model cd ixa_model - ``` Use Ixa's new project setup script to setup the project for Ixa. ```bash - curl -s https://raw.githubusercontent.com/CDCgov/ixa/main/scripts/setup_new_ixa_project.sh | sh -s ``` @@ -43,5 +41,5 @@ cargo run -- --log-level=trace To run with logging enabled for just `ixa_model`: ```bash -cargo run -- --log-level=ixa_model:trace +cargo run -- --log-level ixa_model=trace ``` From f35d257d6251c1a08f1c8bb1e608a9fda548b1ec Mon Sep 17 00:00:00 2001 From: Scott Olesen Date: Fri, 13 Feb 2026 12:17:13 -0500 Subject: [PATCH 2/3] docs: fix dependencies --- docs/book/src/first_model/setup.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/book/src/first_model/setup.md b/docs/book/src/first_model/setup.md index d6ef88f5..46b42c4f 100644 --- a/docs/book/src/first_model/setup.md +++ b/docs/book/src/first_model/setup.md @@ -76,15 +76,9 @@ We will depend on a few external libraries in addition to Ixa. The `cargo add` command makes this easy. ```bash -cargo add rand_distr@0.4.3 -cargo add csv +cargo add csv rand_distr serde ``` -Notice that: - -- a particular version can be specified with the `packagename@1.2.3` syntax; -- we can compile a library with specific features turn on or off. - ### `Cargo.toml` Cargo stores information about these dependencies in the `Cargo.toml` file. This From b8b41efeac05cfae54e22d915c6c806236d62cee Mon Sep 17 00:00:00 2001 From: Scott Olesen Date: Fri, 13 Feb 2026 12:26:10 -0500 Subject: [PATCH 3/3] docs: use main branch setup script --- docs/book/src/first_model/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/src/first_model/setup.md b/docs/book/src/first_model/setup.md index 46b42c4f..47b99424 100644 --- a/docs/book/src/first_model/setup.md +++ b/docs/book/src/first_model/setup.md @@ -64,7 +64,7 @@ Ixa comes with a convenience script for setting up new Ixa projects. Change directory to `disease_model/`, the project root, and run this command. ```bash -curl -s https://raw.githubusercontent.com/CDCgov/ixa/release/scripts/setup_new_ixa_project.sh | sh -s +curl -s https://raw.githubusercontent.com/CDCgov/ixa/main/scripts/setup_new_ixa_project.sh | sh -s ``` The script adds the Ixa library as a project dependency and provides you with a