diff options
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 + |
