11[package ]
22name = " chuchi-crypto"
33description = " Crypto library providing encryption and signing."
4- version = " 0.1.0 "
4+ version = " 0.1.1 "
55authors = [
" Sören Meier <[email protected] >" ]
66repository = " https://github.com/chuchi-dev/chuchi-crypto"
77homepage = " https://chuchi.dev/"
@@ -16,20 +16,20 @@ all-features = true
1616
1717[features ]
1818cipher = [
19- " zeroize" ,
20- " poly1305" ,
21- " universal-hash" ,
22- " chacha20" ,
23- " x25519-dalek" ,
24- " generic-array" ,
19+ " zeroize" ,
20+ " poly1305" ,
21+ " universal-hash" ,
22+ " chacha20" ,
23+ " x25519-dalek" ,
24+ " generic-array" ,
2525]
2626signature = [" ed25519-dalek" ]
2727
2828b64 = [" base64" ]
2929serde = [" _serde" ]
3030hash = [" blake2" , " generic-array" ]
3131protobuf = [" dep:protopuffer" ]
32- postgres = [" dep:postgres-types" , " dep:bytes" ]
32+ postgres = [" dep:postgres-types" , " dep:bytes" , " dep:chuchi-postgres " ]
3333
3434[dependencies ]
3535# cipher
@@ -38,13 +38,13 @@ poly1305 = { version = "0.8", optional = true }
3838universal-hash = { version = " 0.5" , optional = true }
3939chacha20 = { version = " 0.9" , optional = true }
4040x25519-dalek = { version = " 2.0" , optional = true , features = [
41- " static_secrets" ,
41+ " static_secrets" ,
4242] }
4343
4444# signature
4545ed25519-dalek = { version = " 2.0" , optional = true , features = [
46- " zeroize" ,
47- " rand_core" ,
46+ " zeroize" ,
47+ " rand_core" ,
4848] }
4949
5050# hash
@@ -58,4 +58,5 @@ _serde = { package = "serde", version = "1.0", optional = true }
5858
5959protopuffer = { version = " 0.1" , optional = true }
6060postgres-types = { version = " 0.2" , optional = true }
61+ chuchi-postgres = { version = " 0.1" , optional = true }
6162bytes = { version = " 1.6" , optional = true }
0 commit comments