Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
227 changes: 90 additions & 137 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ edition = "2024"
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"
repository = "https://github.com/linux-credentials/oo7"
homepage = "https://github.com/linux-credentials/oo7"
license = "MIT"
rust-version = "1.88"
rust-version = "1.92"
exclude = ["org.freedesktop.Secrets.xml"]

[workspace.dependencies]
zvariant = { version = "5.8", default-features = false, features = ["gvariant", "serde_bytes"]}
ashpd = {version = "0.13.0-alpha", default-features = false}
ashpd = {version = "0.13", default-features = false}
endi = "1.1"
clap = { version = "4.5", features = [ "cargo", "derive" ] }
futures-channel = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OO7

[![docs](https://docs.rs/oo7/badge.svg)](https://docs.rs/oo7/) [![crates.io](https://img.shields.io/crates/v/oo7)](https://crates.io/crates/oo7) ![CI](https://github.com/bilelmoussaoui/oo7/workflows/CI/badge.svg) [![Coverage](https://bilelmoussaoui.github.io/oo7/coverage/badges/flat.svg)](https://bilelmoussaoui.github.io/oo7/coverage/)
[![docs](https://docs.rs/oo7/badge.svg)](https://docs.rs/oo7/) [![crates.io](https://img.shields.io/crates/v/oo7)](https://crates.io/crates/oo7) ![CI](https://github.com/linux-credentials/oo7/workflows/CI/badge.svg) [![Coverage](https://linux-credentials.github.io/oo7/coverage/badges/flat.svg)](https://linux-credentials.github.io/oo7/coverage/)

James Bond went on a new mission and this time as a [Secret Service provider](https://specifications.freedesktop.org/secret-service-spec/latest/).

Expand Down
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# oo7-cli

[![crates.io](https://img.shields.io/crates/v/oo7-cli)](https://crates.io/crates/oo7-cli) ![CI](https://github.com/bilelmoussaoui/oo7/workflows/CI/badge.svg)
[![crates.io](https://img.shields.io/crates/v/oo7-cli)](https://crates.io/crates/oo7-cli) ![CI](https://github.com/linux-credentials/oo7/workflows/CI/badge.svg)

A CLI application to interact with the system keyring. Replacement of the `secret-tool` utility.

Expand Down
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OO7

[![docs](https://docs.rs/oo7/badge.svg)](https://docs.rs/oo7/) [![crates.io](https://img.shields.io/crates/v/oo7)](https://crates.io/crates/oo7) ![CI](https://github.com/bilelmoussaoui/oo7/workflows/CI/badge.svg)
[![docs](https://docs.rs/oo7/badge.svg)](https://docs.rs/oo7/) [![crates.io](https://img.shields.io/crates/v/oo7)](https://crates.io/crates/oo7) ![CI](https://github.com/linux-credentials/oo7/workflows/CI/badge.svg)

This library allows to store secrets using two different backends:

Expand Down
2 changes: 1 addition & 1 deletion portal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version.workspace = true
description = "Secret portal implementation using oo7"

[dependencies]
ashpd = {workspace = true, features = ["backend_secret", "tracing"]}
ashpd = {workspace = true, features = ["backend", "secret", "tracing"]}
clap.workspace = true
oo7 = { workspace = true, features = ["tokio"] }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion portal/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# oo7-portal

[![crates.io](https://img.shields.io/crates/v/oo7-portal)](https://crates.io/crates/oo7-portal) ![CI](https://github.com/bilelmoussaoui/oo7/workflows/CI/badge.svg)
[![crates.io](https://img.shields.io/crates/v/oo7-portal)](https://crates.io/crates/oo7-portal) ![CI](https://github.com/linux-credentials/oo7/workflows/CI/badge.svg)

An implementation of [`org.freedesktop.impl.portal.Secret`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.impl.portal.Secret.html)

Expand Down
4 changes: 2 additions & 2 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ crate-type = ["cdylib"]

[dependencies]
oo7_rs = { package = "oo7", path = "../client", version = "0.6.0-alpha" }
pyo3 = { version = "0.27", features = ["extension-module", "abi3-py38"] }
pyo3-async-runtimes = { version = "0.27", features = ["tokio-runtime"] }
pyo3 = { version = "0.28", features = ["extension-module", "abi3-py38"] }
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
tokio = { version = "1", features = ["rt-multi-thread"] }
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
ashpd = {workspace = true, features = ["backend_secret", "tracing"]}
ashpd = {workspace = true, features = ["backend", "secret", "tracing"]}
base64 = {version = "0.22", optional = true}
clap.workspace = true
enumflags2 = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# oo7-server

![CI](https://github.com/bilelmoussaoui/oo7/workflows/CI/badge.svg)
![CI](https://github.com/linux-credentials/oo7/workflows/CI/badge.svg)

The new D-Bus Secret Service provider. Replacement of the `gnome-keyring-daemon`

Expand Down
Loading