File tree Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ crate-type = ["cdylib"]
1212
1313[dependencies ]
1414tracing-subscriber = { version = " 0.3" , features = [" env-filter" ] }
15- libsql = { version = " 0.9.13 " , features = [" encryption" ] }
15+ libsql = { version = " 0.9.14 " , features = [" encryption" ] }
1616tracing = " 0.1"
1717once_cell = " 1.18.0"
1818tokio = { version = " 1.29.1" , features = [ " rt-multi-thread" ] }
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ impl Database {
4444 let encryption_context = libsql:: EncryptionContext {
4545 key : libsql:: EncryptionKey :: Base64Encoded ( remote_encryption_key) ,
4646 } ;
47- builder = builder. remote_encryption ( Some ( encryption_context) ) ;
47+ builder = builder. remote_encryption ( encryption_context) ;
4848 }
4949 rt. block_on ( builder. build ( ) )
5050 } else {
@@ -117,7 +117,7 @@ impl Database {
117117 let encryption_context = libsql:: EncryptionContext {
118118 key : libsql:: EncryptionKey :: Base64Encoded ( remote_encryption_key) ,
119119 } ;
120- builder = builder. remote_encryption ( Some ( encryption_context) ) ;
120+ builder = builder. remote_encryption ( encryption_context) ;
121121 }
122122 builder. build ( ) . await
123123 } )
@@ -134,7 +134,7 @@ impl Database {
134134 let encryption_context = libsql:: EncryptionContext {
135135 key : libsql:: EncryptionKey :: Base64Encoded ( remote_encryption_key) ,
136136 } ;
137- builder = builder. remote_encryption ( Some ( encryption_context) ) ;
137+ builder = builder. remote_encryption ( encryption_context) ;
138138 }
139139 builder. build ( ) . await
140140 } )
You can’t perform that action at this time.
0 commit comments