Files
rustpt/Cargo.toml
Robert Garrett 49569528fa Mark v1, release under AGPL-3.0 license
I'm marking v1 here before I make any more changes. I would have liked
to make v1 the last change I made when finishing the Ray Tracing in One
Weekend book, but I did not.

The project shall be AGPL v3-only. I'm indicating this both in a LICENSE
file and in the Cargo.toml's project.license table because not all tools
understand both pathways.
2025-11-11 17:01:47 -06:00

12 lines
287 B
TOML

[package]
name = "rustpt"
version = "1.0.0"
edition = "2024"
license = "AGPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.9", features = ["small_rng"] }
itertools = { version = "0.14" }