-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
39 lines (36 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[workspace]
resolver = "2"
members = [
"cargo-credential",
"client",
"cli",
"portal",
"server",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
authors = ["Bilal Elmoussaoui", "Sophie Herold", "Maximiliano Sandoval"]
keywords = ["keyring", "secret", "service", "portal", "keychain"]
categories = ["os::linux-apis", "os", "api-bindings"]
repository = "https://github.com/bilelmoussaoui/oo7"
homepage = "https://github.com/bilelmoussaoui/oo7"
license = "MIT"
rust-version = "1.80"
exclude = ["org.freedesktop.Secrets.xml"]
[workspace.dependencies]
ashpd = {version = "0.10", default-features = false}
endi = "1.1"
clap = { version = "4.5", features = [ "cargo", "derive" ] }
futures-channel = "0.3"
futures-lite = "2.5"
futures-util = "0.3"
oo7 = { path = "client", version = "0.3", features = ["unstable", "tracing"]}
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.41", default-features = false }
tempfile = "3.14"
tracing = "0.1"
tracing-subscriber = "0.3"
zbus = { version = "5.0", default-features = false }
zeroize = { version = "1", features = ["zeroize_derive"] }
zvariant = { version = "5.1", default-features = false, features = ["gvariant"]}