1
0
mirror of https://github.com/osmarks/osmarkscalculator.git synced 2026-07-13 23:02:47 +00:00
Files
osmarkscalculator/Cargo.toml
T

26 lines
469 B
TOML
Raw Normal View History

2022-11-10 17:31:44 +00:00
[package]
name = "osmarkscalculator"
version = "0.1.0"
edition = "2018"
2023-11-28 16:47:17 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
name = "osmarkscalculator"
[[bin]]
name = "osmarkscalculator"
path = "src/main.rs"
2022-11-10 17:31:44 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
inlinable_string = "0.1"
2023-11-28 16:47:17 +00:00
itertools = "0.10"
wasm-bindgen = "0.2.63"
wee_alloc = "0.4.5"
2024-08-04 15:46:06 +01:00
seahash = "4"
2023-11-28 16:47:17 +00:00
[profile.release]
opt-level = "s"
lto = true