Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add apple-native, windows-native, sync-secret-service feature in dep:keyring #390

Closed
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/code_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install libudev-dev
run: |
sudo apt-get update
sudo apt-get install --assume-yes libudev-dev
sudo apt-get install --assume-yes libudev-dev libdbus-1-dev
- name: Check lints (cargo clippy)
run: cargo clippy -- -D warnings

2 changes: 1 addition & 1 deletion .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install packages (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev
run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev libdbus-1-dev
- name: Run release-plz
uses: MarcoIeni/[email protected]
env:
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ near-socialdb-client = "0.5"
near-abi = "0.4.2"
zstd = "0.13"

keyring = "3.0.5"
keyring = { version = "3.0.5", features = ["apple-native", "windows-native", "sync-secret-service"] }
interactive-clap = "0.3"
interactive-clap-derive = "0.3"

Expand Down Expand Up @@ -140,3 +140,4 @@ allow-dirty = ["ci"]

[workspace.metadata.dist.dependencies.apt]
libudev-dev = { version = "*", targets = ["x86_64-unknown-linux-gnu"] }
libdbus-1-dev = { version = "*", targets = ["x86_64-unknown-linux-gnu"] }
Loading