98 lines
2.9 KiB
TOML
98 lines
2.9 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.94.0"
|
|
name = "sqlx-macros"
|
|
version = "0.9.0"
|
|
authors = [
|
|
"Ryan Leckey <leckey.ryan@gmail.com>",
|
|
"Austin Bonander <austin.bonander@gmail.com>",
|
|
"Chloe Ross <orangesnowfox@gmail.com>",
|
|
"Daniel Akhterov <akhterovd@gmail.com>",
|
|
]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
|
|
readme = false
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/launchbadge/sqlx"
|
|
|
|
[features]
|
|
_rt-async-global-executor = ["sqlx-macros-core/_rt-async-global-executor"]
|
|
_rt-async-std = ["sqlx-macros-core/_rt-async-std"]
|
|
_rt-smol = ["sqlx-macros-core/_rt-smol"]
|
|
_rt-tokio = ["sqlx-macros-core/_rt-tokio"]
|
|
_tls-native-tls = ["sqlx-macros-core/_tls-native-tls"]
|
|
_tls-rustls-aws-lc-rs = ["sqlx-macros-core/_tls-rustls-aws-lc-rs"]
|
|
_tls-rustls-ring-native-roots = ["sqlx-macros-core/_tls-rustls-ring-native-roots"]
|
|
_tls-rustls-ring-webpki = ["sqlx-macros-core/_tls-rustls-ring-webpki"]
|
|
bigdecimal = ["sqlx-macros-core/bigdecimal"]
|
|
bit-vec = ["sqlx-macros-core/bit-vec"]
|
|
chrono = ["sqlx-macros-core/chrono"]
|
|
default = []
|
|
derive = ["sqlx-macros-core/derive"]
|
|
ipnet = ["sqlx-macros-core/ipnet"]
|
|
ipnetwork = ["sqlx-macros-core/ipnetwork"]
|
|
json = ["sqlx-macros-core/json"]
|
|
mac_address = ["sqlx-macros-core/mac_address"]
|
|
macros = ["sqlx-macros-core/macros"]
|
|
migrate = ["sqlx-macros-core/migrate"]
|
|
mysql = ["sqlx-macros-core/mysql"]
|
|
mysql-rsa = ["sqlx-macros-core/mysql-rsa"]
|
|
postgres = ["sqlx-macros-core/postgres"]
|
|
rust_decimal = ["sqlx-macros-core/rust_decimal"]
|
|
sqlite = ["sqlx-macros-core/sqlite"]
|
|
sqlite-load-extension = ["sqlx-macros-core/sqlite-load-extension"]
|
|
sqlite-unbundled = ["sqlx-macros-core/sqlite-unbundled"]
|
|
sqlx-toml = ["sqlx-macros-core/sqlx-toml"]
|
|
time = ["sqlx-macros-core/time"]
|
|
uuid = ["sqlx-macros-core/uuid"]
|
|
|
|
[lib]
|
|
name = "sqlx_macros"
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[dependencies.proc-macro2]
|
|
version = "1.0.83"
|
|
default-features = false
|
|
|
|
[dependencies.quote]
|
|
version = "1.0.35"
|
|
default-features = false
|
|
|
|
[dependencies.sqlx-core]
|
|
version = "=0.9.0"
|
|
features = ["any"]
|
|
|
|
[dependencies.sqlx-macros-core]
|
|
version = "=0.9.0"
|
|
|
|
[dependencies.syn]
|
|
version = "2.0.87"
|
|
features = [
|
|
"parsing",
|
|
"proc-macro",
|
|
]
|
|
default-features = false
|
|
|
|
[lints.clippy]
|
|
cast_possible_truncation = "deny"
|
|
cast_possible_wrap = "deny"
|
|
cast_sign_loss = "deny"
|
|
disallowed_methods = "deny"
|