Rasql/rasql-core/Cargo.toml

22 lines
617 B
TOML
Raw Permalink Normal View History

2024-03-24 11:30:19 +00:00
[package]
name = "rasql-core"
version = "0.0.0"
2024-03-24 11:30:19 +00:00
edition = "2021"
license = "MIT"
description = "SQL analysis and Rust type generation for Rasql"
2024-03-24 11:30:19 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2025-01-27 00:16:15 +00:00
[features]
tokio-postgres = ["rasql-traits/tokio-postgres", "dep:tokio-postgres"]
2024-03-24 11:30:19 +00:00
[dependencies]
2025-01-27 00:16:15 +00:00
sqlparser = "0.54.0"
rasql-traits = { version = "0.0.0", path = "../rasql-traits" }
2025-01-27 00:16:15 +00:00
quote = "1.0.35"
proc-macro2 = "1.0.93"
syn = { version = "2.0.96", features = ["full"] }
tokio-postgres = { version = "0.7.12", optional = true }
convert_case = "0.7.1"
2025-01-27 21:40:35 +00:00
thiserror = "2.0.11"