- Updated package name in Cargo.toml: nginx-test → sqlite-serve - Updated library name: libnginx_test.dylib → libsqlite_serve.dylib - Updated all load_module directives in nginx configs - Updated build checks in start scripts - Updated branding in footer template - Updated project name in all README files The name 'sqlite-serve' better reflects the module's purpose: serving dynamic content from SQLite databases via NGINX.
15 lines
243 B
TOML
15 lines
243 B
TOML
[package]
|
|
name = "sqlite-serve"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
ngx = "0.5.0"
|
|
rusqlite = "0.37.0"
|
|
handlebars = "6.3.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.145"
|