diff options
| author | u <@> | 2026-03-10 08:23:57 +0200 |
|---|---|---|
| committer | u <@> | 2026-03-10 08:23:57 +0200 |
| commit | 4571e203180afbf0b9ad412c08109bba013b08a8 (patch) | |
| tree | b2320d42d4c0ea45e1fdc3f07fc8acf2e3beff6b /Cargo.toml | |
a
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..fa568ae --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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 + |
