[package] name = "dprint-plugin-sql" version = "0.2.0" authors = ["David Sherret "] edition = "2021" homepage = "https://github.com/dprint/dprint-plugin-sql" keywords = ["formatting", "formatter", "sql"] license = "MIT" repository = "https://github.com/dprint/dprint-plugin-sql" description = "SQL formatter for dprint via sqlformat-rs." [lib] crate-type = ["lib", "cdylib"] [profile.release] opt-level = 3 debug = false lto = true debug-assertions = false overflow-checks = false panic = "abort" [features] wasm = ["serde_json", "dprint-core/wasm"] [dependencies] anyhow = "1.0.51" dprint-core = { version = "0.62.1", features = ["formatting"] } serde = { version = "1.0.88", features = ["derive"] } serde_json = { version = "1.0", optional = true } sqlformat = "0.2.1" [dev-dependencies] dprint-development = "0.9.3" serde_json = { version = "1.0" }