36 lines
770 B
TOML
36 lines
770 B
TOML
[package]
|
|
name = "sqlx-pool-guard"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true, features = [
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"time",
|
|
"fs",
|
|
] }
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite"] }
|
|
tracing.workspace = true
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
proc_pidinfo.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.61", features = [
|
|
"Win32",
|
|
"Win32_System",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Threading",
|
|
"Win32_Storage_FileSystem",
|
|
"Wdk_System_SystemInformation",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
tracing-subscriber.workspace = true
|