summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: fa568ae0762103774d2f584edd18ea4e72291b99 (plain)
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
[package]
name = "ataxia-rs"
version = "0.1.0"
edition = "2021"
authors = ["user"]

[lib]
crate-type = ["cdylib"]

[dependencies]
worker = { version = "0.7" }
worker-macros = { version = "0.7" }
maud = { version = "0.27.0" }
lazy_static = "1.5.0"
num = { version = "0.4.3", default-features = false }
regex = "1.12.3"

[profile.release]
lto = true
strip = true
codegen-units = 1
overflow-checks = false


[profile.dev]
overflow-checks = false