24 lines
689 B
TOML
24 lines
689 B
TOML
[package]
|
|
name = "aweblib"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["windows"]
|
|
windows = []
|
|
linux = ["dep:daemonize"]
|
|
|
|
[dependencies]
|
|
tokio = {version = "1.41.1", features = ["macros", "rt-multi-thread", "net"]}
|
|
hyper = {version = "1.5.1", features = ["server", "http1"]}
|
|
hyper-util = {version = "0.1.10", features = ["tokio"]}
|
|
serde_json = {version = "1.0.132"}
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
bytes = "1.8.0"
|
|
http-body-util = "0.1.2"
|
|
sqlx = {version = "0.8.1", features = ["sqlite", "sqlx-macros", "runtime-tokio"]}
|
|
daemonize = {version = "0.5.0", optional = true}
|
|
aweblib_macros = {path = "aweblib_macros" }
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3.31" |