22name = " sqlx-postgres"
33documentation = " https://docs.rs/sqlx"
44description = " PostgreSQL driver implementation for SQLx. Not for direct use; see the `sqlx` crate for details."
5- version.workspace = true
6- license.workspace = true
7- edition.workspace = true
8- authors.workspace = true
9- repository.workspace = true
5+ version = " 0.8.6"
6+ license = " MIT OR Apache-2.0"
7+ edition = " 2021"
8+ authors = [
9+ " Ryan Leckey <leckey.ryan@gmail.com>" ,
10+ " Austin Bonander <austin.bonander@gmail.com>" ,
11+ " Chloe Ross <orangesnowfox@gmail.com>" ,
12+ ]
13+ repository = " https://github.com/launchbadge/sqlx"
1014# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1115
1216[features ]
@@ -40,23 +44,23 @@ md-5 = { version = "0.10.0", default-features = false }
4044rand = { version = " 0.8.4" , default-features = false , features = [" std" , " std_rng" ] }
4145sha2 = { version = " 0.10.0" , default-features = false }
4246
43- # Type Integrations (versions inherited from `[workspace.dependencies]`)
44- bigdecimal = { workspace = true , optional = true }
45- bit-vec = { workspace = true , optional = true }
46- chrono = { workspace = true , optional = true }
47- ipnet = { workspace = true , optional = true }
48- ipnetwork = { workspace = true , optional = true }
49- mac_address = { workspace = true , optional = true }
50- rust_decimal = { workspace = true , optional = true }
51- time = { workspace = true , optional = true }
52- uuid = { workspace = true , optional = true }
47+ # Type Integrations
48+ bigdecimal = { version = " 0.4.0 " , optional = true }
49+ bit-vec = { version = " 0.6.3 " , optional = true }
50+ chrono = { version = " 0.4.34 " , default-features = false , features = [ " std " , " clock " ] , optional = true }
51+ ipnet = { version = " 2.3.0 " , optional = true }
52+ ipnetwork = { version = " 0.20.0 " , optional = true }
53+ mac_address = { version = " 1.1.5 " , optional = true }
54+ rust_decimal = { version = " 1.26.1 " , default-features = false , features = [ " std " ] , optional = true }
55+ time = { version = " 0.3.36 " , features = [ " formatting " , " parsing " , " macros " ] , optional = true }
56+ uuid = { version = " 1.1.2 " , optional = true }
5357
5458# Misc
5559atoi = " 2.0"
5660base64 = { version = " 0.22.0" , default-features = false , features = [" std" ] }
5761bitflags = { version = " 2" , default-features = false }
5862byteorder = { version = " 1.4.3" , default-features = false , features = [" std" ] }
59- dotenvy = { workspace = true }
63+ dotenvy = { version = " 0.15.7 " , default-features = false }
6064hex = " 0.4.3"
6165home = " 0.5.5"
6266itoa = " 1.0.1"
@@ -74,16 +78,15 @@ serde = { version = "1.0.144", features = ["derive"] }
7478serde_json = { version = " 1.0.85" , features = [" raw_value" ] }
7579
7680[dependencies .sqlx-core ]
77- workspace = true
81+ version = " =0.8.6 "
7882# We use JSON in the driver implementation itself so there's no reason not to enable it here.
7983features = [" json" ]
8084
81- [dev-dependencies .sqlx ]
82- workspace = true
83- features = [" postgres" , " derive" ]
84-
8585[target .'cfg(target_os = "windows")' .dependencies ]
8686etcetera = " 0.8.0"
8787
88- [lints ]
89- workspace = true
88+ [lints .clippy ]
89+ cast_possible_truncation = ' deny'
90+ cast_possible_wrap = ' deny'
91+ cast_sign_loss = ' deny'
92+ disallowed_methods = ' deny'
0 commit comments