Skip to content

Commit

Permalink
Feature/native certs (#72)
Browse files Browse the repository at this point in the history
Add cert support in the Rust layer
  • Loading branch information
dbernaciak authored Sep 18, 2024
1 parent 2274bdf commit 1f0117f
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 49 deletions.
146 changes: 103 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.38", features = ["serde"] }
bincode = "1.3.3"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
tokio = { version = "1.39", features = ["rt-multi-thread"] }
reqwest = { version = "0.12.7", features = ["json", "rustls-tls", "rustls-tls-native-roots"] }
tokio = { version = "1.40", features = ["rt-multi-thread", "full"] }
url = { version = "2.5", features = [] }
json = { version = "0.12" }
state = { version = "0.6"}
Expand Down
2 changes: 1 addition & 1 deletion py_src/fusion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Fusion Devs"""
__email__ = "[email protected]"
__version__ = "1.3.3"
__version__ = "1.3.4-dev0"

from fusion._fusion import FusionCredentials
from fusion.fs_sync import fsync
Expand Down
Loading

0 comments on commit 1f0117f

Please sign in to comment.