fix: timestamp handling on Android

This commit is contained in:
Tien Do Nam
2026-08-01 15:06:45 +02:00
parent 9900953ae9
commit b13bbeb3cd
15 changed files with 226 additions and 37 deletions
+2 -1
View File
@@ -28,6 +28,7 @@ serde_json = "1.0.151"
sha2 = { version = "0.11.0", optional = true }
socket2 = { version = "0.6.5", optional = true }
thiserror = "2.0.19"
time = { version = "0.3.54", features = ["parsing"], optional = true }
tokio = { version = "1.53.1", features = ["full"] }
tokio-rustls = { version = "0.26.4", default-features = false, features = ["ring", "tls12"], optional = true }
tokio-stream = "0.1.19"
@@ -44,7 +45,7 @@ x509-parser = { version = "0.18.1", features = ["verify"], optional = true }
default = []
crypto = ["ed25519-dalek", "rcgen", "rsa", "sha2", "tokio-util"]
discovery = ["http", "multicast"]
http = ["crypto", "form_urlencoded", "http-body-util", "hyper", "hyper-util", "if-addrs", "pem", "percent-encoding", "reqwest", "rustls", "socket2", "tokio-rustls", "tokio-util", "x509-parser"]
http = ["crypto", "form_urlencoded", "http-body-util", "hyper", "hyper-util", "if-addrs", "pem", "percent-encoding", "reqwest", "rustls", "socket2", "time", "tokio-rustls", "tokio-util", "x509-parser"]
multicast = ["if-addrs", "socket2", "tokio-util"]
webrtc-signaling = ["tokio-tungstenite"]
webrtc = ["crypto", "flate2", "dep:webrtc", "webrtc-signaling", "x509-parser"]