Add PEM headers during pairing file serialization (#4)

Fixes regression from rustls migration.

* Update Cargo.toml

* Update pairing_file.rs

* base64
This commit is contained in:
neo
2025-05-05 17:35:35 -04:00
committed by GitHub
parent 6ee26a5872
commit 512b556a45
2 changed files with 99 additions and 18 deletions

View File

@@ -22,11 +22,11 @@ ns-keyed-archive = { version = "0.1.3", optional = true }
thiserror = { version = "2" }
log = { version = "0.4" }
env_logger = { version = "0.11" }
base64 = { version = "0.22" }
indexmap = { version = "2.7", features = ["serde"], optional = true }
uuid = { version = "1.12", features = ["serde", "v4"], optional = true }
async-recursion = { version = "1.1", optional = true }
base64 = { version = "0.22", optional = true }
chrono = { version = "0.4.40", optional = true, default-features = false }
serde_json = { version = "1", optional = true }
@@ -76,7 +76,6 @@ xpc = [
"dep:indexmap",
"dep:uuid",
"dep:async-recursion",
"dep:base64",
"dep:json",
]
full = [