mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 22:44:17 +00:00
70 lines
2.3 KiB
TOML
70 lines
2.3 KiB
TOML
|
[package]
|
||
|
name = "sqlx-mysql"
|
||
|
readme = "README.md"
|
||
|
documentation = "https://docs.rs/sqlx"
|
||
|
description = "MySQL driver implementation for SQLx. Not for direct use; see the `sqlx` crate for details."
|
||
|
version.workspace = true
|
||
|
license.workspace = true
|
||
|
edition.workspace = true
|
||
|
authors.workspace = true
|
||
|
repository.workspace = true
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[features]
|
||
|
json = ["sqlx-core/json", "serde"]
|
||
|
any = ["sqlx-core/any"]
|
||
|
offline = ["sqlx-core/offline", "serde/derive"]
|
||
|
migrate = ["sqlx-core/migrate"]
|
||
|
|
||
|
[dependencies]
|
||
|
# Futures crates
|
||
|
futures-channel = { version = "0.3.19", default-features = false, features = ["sink", "alloc", "std"] }
|
||
|
futures-core = { version = "0.3.19", default-features = false }
|
||
|
futures-io = "0.3.24"
|
||
|
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink", "io"] }
|
||
|
|
||
|
# Cryptographic Primitives
|
||
|
crc = "3.0.0"
|
||
|
digest = { version = "0.10.0", default-features = false, features = ["std"] }
|
||
|
hkdf = "0.12.0"
|
||
|
hmac = { version = "0.12.0", default-features = false }
|
||
|
md-5 = { version = "0.10.0", default-features = false }
|
||
|
rand = { version = "0.8.4", default-features = false, features = ["std", "std_rng"] }
|
||
|
rsa = "0.6.0"
|
||
|
sha1 = { version = "0.10.1", default-features = false }
|
||
|
sha2 = { version = "0.10.0", default-features = false }
|
||
|
|
||
|
# Type Integrations (versions inherited from `[workspace.dependencies]`)
|
||
|
bigdecimal = { workspace = true, optional = true }
|
||
|
chrono = { workspace = true, optional = true }
|
||
|
rust_decimal = { workspace = true, optional = true }
|
||
|
time = { workspace = true, optional = true }
|
||
|
uuid = { workspace = true, optional = true }
|
||
|
|
||
|
# Misc
|
||
|
atoi = "1.0"
|
||
|
base64 = { version = "0.13.0", default-features = false, features = ["std"] }
|
||
|
bitflags = { version = "1.3.2", default-features = false }
|
||
|
byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
|
||
|
bytes = "1.1.0"
|
||
|
dotenvy = "0.15.5"
|
||
|
dirs = "4.0.0"
|
||
|
either = "1.6.1"
|
||
|
generic-array = { version = "0.14.4", default-features = false }
|
||
|
hex = "0.4.3"
|
||
|
itoa = "1.0.1"
|
||
|
log = "0.4.17"
|
||
|
memchr = { version = "2.4.1", default-features = false }
|
||
|
once_cell = "1.9.0"
|
||
|
percent-encoding = "2.1.0"
|
||
|
smallvec = "1.7.0"
|
||
|
stringprep = "0.1.2"
|
||
|
thiserror = "1.0.35"
|
||
|
whoami = "1.2.1"
|
||
|
|
||
|
serde = { version = "1.0.144", optional = true }
|
||
|
|
||
|
[dependencies.sqlx-core]
|
||
|
version = "=0.6.2"
|
||
|
path = "../sqlx-core"
|