35 lines
712 B
TOML
35 lines
712 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"] }
|
|
log.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.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 }
|