-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (32 loc) · 965 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "simple-rijndael"
version = "0.3.2"
authors = ["PurePeace <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/pure-peace/simple-rijndael"
description = "Pure Rust, simple implementation of the rijndael-cbc algorithm for osu! score decryption or encryption."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
std = []
[dependencies]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "rijndael_bench"
harness = false
# link-time-optimization
# Enabling makes the compiled program size smaller and higher performance,
# but it will extend compilation time.
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
# link-time-optimization
# Enabling makes the compiled program size smaller and higher performance,
# but it will extend compilation time.
[profile.bench]
lto = true
codegen-units = 1
opt-level = 3