sudk/Cargo.toml
ddidderr e446d9b74f
rust version: backtracking simplified and other improvements
* backtracking: main loop simplified
* instead of the `fixed` Vec, we now use skip fields to calculate
  how many fields to skip in `next()` and `prev()`.
  This is faster because we get rid of the `if` statement
  thus no branching occurs.
2023-03-27 21:04:04 +02:00

15 lines
213 B
TOML

[package]
name = "sudk"
version = "0.1.0"
authors = ["ddidderr <ddidderr@paul.network>"]
edition = "2021"
[dependencies]
[profile.release]
lto = true
debug = false
strip = true
panic = "abort"
codegen-units = 1