29 lines
522 B
TOML
29 lines
522 B
TOML
[package]
|
|
name = "montecarlo-rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "monte-carlo"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
opt-level = 2
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies.rand]
|
|
version = "0.8.5"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.200"
|
|
features = ["derive"]
|
|
|
|
[dependencies.axum]
|
|
version = "0.7.5"
|
|
features = ["json"]
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0.116"
|