58 lines
1.8 KiB
TOML
58 lines
1.8 KiB
TOML
[package]
|
|
name = "sqlpage"
|
|
version = "0.20.0"
|
|
edition = "2021"
|
|
description = "A SQL-only web application framework. Takes .sql files and formats the query result using pre-made configurable professional-looking components."
|
|
keywords = ["web", "sql", "framework"]
|
|
license = "MIT"
|
|
homepage = "https://sql.ophir.dev/"
|
|
repository = "https://github.com/lovasoa/SQLpage"
|
|
documentation = "https://docs.rs/sqlpage"
|
|
include = ["/src", "/README.md", "/build.rs", "/sqlpage", "/index.sql"]
|
|
|
|
[profile.superoptimized]
|
|
inherits = "release"
|
|
strip = "debuginfo"
|
|
lto = "fat"
|
|
panic = "abort"
|
|
codegen-units = 2
|
|
|
|
[dependencies]
|
|
sqlx = { package = "sqlx-oldapi", version = "0.6.19", features = ["any", "runtime-actix-rustls", "sqlite", "postgres", "mysql", "mssql", "chrono", "json" ] }
|
|
chrono = "0.4.23"
|
|
actix-web = { version = "4", features = ["rustls-0_21", "cookies"] }
|
|
percent-encoding = "2.2.0"
|
|
handlebars = "5.0.0-beta.0"
|
|
log = "0.4.17"
|
|
env_logger = "0.11.1"
|
|
mime_guess = "2.0.4"
|
|
futures-util = "0.3.21"
|
|
tokio = { version = "1.24.1", features = ["macros", "rt", "process", "sync"] }
|
|
tokio-stream = "0.1.9"
|
|
anyhow = "1"
|
|
serde = "1"
|
|
serde_json = { version = "1.0.82", features = ["preserve_order"] }
|
|
lambda-web = { version = "0.2.1", features = ["actix4"], optional = true }
|
|
sqlparser = { version = "0.44.0", features = ["visitor"] }
|
|
async-stream = "0.3"
|
|
async-trait = "0.1.61"
|
|
async-recursion = "1.0.0"
|
|
include_dir = "0.7.2"
|
|
config = { version = "0.14.0", features = ["json"] }
|
|
markdown = { version = "1.0.0-alpha.15", features = ["log"] }
|
|
password-hash = "0.5.0"
|
|
argon2 = "0.5.0"
|
|
actix-web-httpauth = "0.8.0"
|
|
rand = "0.8.5"
|
|
actix-multipart = "0.6.1"
|
|
base64 = "0.22"
|
|
rustls-acme = "0.7.7"
|
|
dotenvy = "0.15.7"
|
|
csv-async = { version = "1.2.6", features = ["tokio"] }
|
|
|
|
[build-dependencies]
|
|
awc = { version = "3", features = ["rustls"] }
|
|
actix-rt = "2.8"
|
|
libflate = "2"
|
|
futures-util = "0.3.21"
|