mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-14 00:07:05 +00:00
dcb58b0e2c
* WIP preparing 0.7.0 release * fix: re-enable examples * fix doctests in `sqlx-core` * cherry-pick CHANGELOG entry for 0.6.3 * add actions workflow for examples * fix(cli): close connection after running migrations * fix examples * fix(sqlite): fix parsing of URLs via `Any` * fix(example): don't let Postgres `listen` example run forever * fix Postgres `transaction` example
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "sqlx-macros"
|
|
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# for conditional compilation
|
|
_rt-async-std = ["sqlx-macros-core/_rt-async-std"]
|
|
_rt-tokio = ["sqlx-macros-core/_rt-tokio"]
|
|
|
|
_tls-native-tls = ["sqlx-macros-core/_tls-native-tls"]
|
|
_tls-rustls = ["sqlx-macros-core/_tls-rustls"]
|
|
|
|
# SQLx features
|
|
migrate = ["sqlx-macros-core/migrate"]
|
|
|
|
# database
|
|
mysql = ["sqlx-macros-core/mysql"]
|
|
postgres = ["sqlx-macros-core/postgres"]
|
|
sqlite = ["sqlx-macros-core/sqlite"]
|
|
|
|
# type
|
|
bigdecimal = ["sqlx-macros-core/bigdecimal"]
|
|
bit-vec = ["sqlx-macros-core/bit-vec"]
|
|
chrono = ["sqlx-macros-core/chrono"]
|
|
ipnetwork = ["sqlx-macros-core/ipnetwork"]
|
|
mac_address = ["sqlx-macros-core/mac_address"]
|
|
rust_decimal = ["sqlx-macros-core/rust_decimal"]
|
|
time = ["sqlx-macros-core/time"]
|
|
uuid = ["sqlx-macros-core/uuid"]
|
|
json = ["sqlx-macros-core/json"]
|
|
|
|
[dependencies]
|
|
sqlx-core = { workspace = true, features = ["any"] }
|
|
sqlx-macros-core = { workspace = true }
|
|
|
|
proc-macro2 = { version = "1.0.36", default-features = false }
|
|
syn = { version = "1.0.84", default-features = false, features = ["parsing", "proc-macro"] }
|
|
quote = { version = "1.0.14", default-features = false }
|