[package]
name
=
"prototype.rs"
version
=
"1.0.0"
edition
=
"2024"
description
=
"Your domain for rapid Rust prototyping — clean, fast, memorable"
license
=
"MIT OR Apache-2.0"
[features]
zero-cost abstractions
Build fast without sacrificing expressiveness. Your prototype stays lean.
memory safe by default
No garbage collector. No data races. The borrow checker keeps you honest.
cargo ecosystem
crates.io has everything. Add dependencies in seconds, ship in minutes.
fearless concurrency
Threads, async, channels — all checked at compile time. No runtime surprises.
first-class tooling
rustfmt, clippy, cargo-test — a batteries-included development experience.
cross-platform
Compile once, run everywhere. Linux, macOS, Windows, WASM — all first-class.
[dependencies]
crate
version
purpose
tokio
"1.36"
async runtime
serde
"1.0"
serialization
axum
"0.7"
web framework
reqwest
"0.12"
http client
anyhow
"1.0"
error handling
clap
"4.5"
cli parsing
[profile.release]
opt-level
=
3
lto
=
true
codegen-units
=
1
panic
=
"abort"
strip
=
true
Production-ready from day one. Prototype fast, ship faster.
[workspace]