2025-03-22 13:44:49 +08:00
|
|
|
[package]
|
|
|
|
name = "sql_analyzer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
sqlparser = { workspace = true } # For SQL parsing
|
|
|
|
tokio = { workspace = true } # For async operations
|
|
|
|
anyhow = { workspace = true } # For error handling
|
|
|
|
serde = { workspace = true } # For serialization
|
|
|
|
thiserror = { workspace = true } # For custom errors
|
2025-03-29 04:16:21 +08:00
|
|
|
regex = { workspace = true } # For pattern matching
|
2025-03-22 13:44:49 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio-test = { workspace = true } # For async testing
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|