@@ -14,7 +14,7 @@ default = []
1414json = [" sqlx-core/json" , " serde" ]
1515any = [" sqlx-core/any" ]
1616offline = [" sqlx-core/offline" , " serde/derive" , " bitflags/serde" ]
17- migrate = [" sqlx-core/migrate" ]
17+ migrate = [" sqlx-core/migrate" , " dep:crc " ]
1818rsa = [" dep:rand" , " dep:rsa" ]
1919
2020# Type Integration features
@@ -32,12 +32,12 @@ futures-core = { version = "0.3.32", default-features = false }
3232futures-util = { version = " 0.3.32" , default-features = false , features = [" alloc" , " sink" , " io" ] }
3333
3434# Cryptographic Primitives
35- crc = " 3.0.0 "
36- digest = { version = " 0.10.7 " , default-features = false , features = [ " std " ] }
37- rand = { version = " 0.8.5 " , default-features = false , features = [ " std " , " std_rng " ] , optional = true }
38- rsa = { version = " 0.9 " , optional = true }
39- sha1 = { version = " 0.10.1 " , default-features = false }
40- sha2 = { version = " 0.10.0 " , default-features = false }
35+ crc = { workspace = true , optional = true }
36+ digest = { workspace = true }
37+ rand = { workspace = true , optional = true }
38+ rsa = { workspace = true , optional = true }
39+ sha1 = { workspace = true }
40+ sha2 = { workspace = true }
4141
4242# Type Integrations (versions inherited from `[workspace.dependencies]`)
4343bigdecimal = { workspace = true , optional = true }
0 commit comments