File tree Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ rust-version = "1.56.0"
99
1010[dependencies ]
1111once_cell = " 1"
12- pyo3 = { version = " 0.18 " , features = [" abi3-py37" ] }
12+ pyo3 = { version = " 0.19 " , features = [" abi3-py37" ] }
1313asn1 = { version = " 0.15.2" , default-features = false }
1414cryptography-cffi = { path = " cryptography-cffi" }
1515cryptography-x509 = { path = " cryptography-x509" }
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ publish = false
88rust-version = " 1.56.0"
99
1010[dependencies ]
11- pyo3 = { version = " 0.18 " , features = [" abi3-py37" ] }
11+ pyo3 = { version = " 0.19 " , features = [" abi3-py37" ] }
1212openssl-sys = " 0.9.88"
1313
1414[build-dependencies ]
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ impl CertificateRevocationList {
145145 revoked_certs
146146 } ) ;
147147
148- if idx. is_instance_of :: < pyo3:: types:: PySlice > ( ) ? {
148+ if idx. is_instance_of :: < pyo3:: types:: PySlice > ( ) {
149149 let indices = idx
150150 . downcast :: < pyo3:: types:: PySlice > ( ) ?
151151 . indices ( self . len ( ) . try_into ( ) . unwrap ( ) ) ?;
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ fn encode_certificate_policies(
211211 let mut qualifiers = vec ! [ ] ;
212212 for py_qualifier in py_policy_qualifiers. iter ( ) ? {
213213 let py_qualifier = py_qualifier?;
214- let qualifier = if py_qualifier. is_instance_of :: < pyo3:: types:: PyString > ( ) ? {
214+ let qualifier = if py_qualifier. is_instance_of :: < pyo3:: types:: PyString > ( ) {
215215 let cps_uri = match asn1:: IA5String :: new ( py_qualifier. extract ( ) ?) {
216216 Some ( s) => s,
217217 None => {
You can’t perform that action at this time.
0 commit comments