Skip to content

Commit ad3212a

Browse files
committed
switch to upstream linux backend again
1 parent d3e07db commit ad3212a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

plugins/secure-storage/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1818
# Details of the support level are left to plugin maintainer
1919
[package.metadata.platforms]
2020
windows = { level = "full", notes = "Windows' credentials storage only protects from other accounts on that system. The main user and their apps can access your app's data." }
21-
linux = { level = "partial", notes = "For this PoC on Linux the storage is in-memory only and will be reset on reboot." }
21+
linux = { level = "full", notes = "May not work in WSL." }
2222
macos = { level = "full", notes = "May prompt for passwords twice." }
2323
android = { level = "full", notes = "The implementation is very new and therefore not battle-tested nor audited." }
2424
ios = { level = "full", notes = "" }
@@ -44,14 +44,13 @@ keyring-core = "0.7"
4444
windows-native-keyring-store = "0.2"
4545

4646
[target.'cfg(target_os = "linux")'.dependencies]
47-
# TODO: upstream is on [email protected] while windows & apple backends only have 0.5 and 0.7 releases.
48-
zbus-secret-service-keyring-store = { git = "https://github.com/FabianLars/zbus-secret-service-keyring-store", features = [
47+
zbus-secret-service-keyring-store = { version = "0.2", features = [
4948
"rt-tokio-crypto-rust",
5049
] }
5150

5251
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
5352
apple-native-keyring-store = "0.2"
5453

5554
[target.'cfg(target_os = "android")'.dependencies]
56-
# TODO: upstream is on [email protected] while windows & apple backends only have 0.5 and 0.7 releases.
55+
# TODO: upstream is on [email protected]
5756
android-native-keyring-store = { git = "https://github.com/FabianLars/android-native-keyring-store" }

0 commit comments

Comments
 (0)