Files
tamerye/Cargo.toml
T
oysteikt 9adfd813e6
Build and test / check (push) Successful in 44s
Build and test / build-static-library (push) Successful in 56s
Build and test / test (push) Successful in 1m3s
Build and test / build-dynamic-library (push) Successful in 1m44s
Run nix flake check / build (push) Successful in 6m25s
Cargo.toml: enable lto
2026-06-09 10:25:37 +09:00

20 lines
309 B
TOML

[package]
name = "tamerye"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = [ "cdylib" ]
[dependencies]
sqlite3_ext = { version = "0.2.1" }
[features]
default = [ ]
# default = [ "static" ]
static = ["sqlite3_ext/static", "sqlite3_ext/static_modern"]
[profile.release]
strip = "debuginfo"
lto = true