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

Add a l10n service to the web-based API #1047

Merged
merged 20 commits into from
Feb 27, 2024
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
7 changes: 5 additions & 2 deletions .github/workflows/ci-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
pam-devel
python-langtable-data
timezone
xkeyboard-config

- name: Install Rust toolchains
run: rustup toolchain install stable
Expand All @@ -92,10 +93,12 @@ jobs:
tool: cargo-binstall

- name: Install Tarpaulin (for code coverage)
run: cargo-binstall --no-confirm cargo-tarpaulin
run: |
echo "$PWD/share/bin" >> $GITHUB_PATH
cargo-binstall --no-confirm cargo-tarpaulin

- name: Run the tests
run: cargo tarpaulin --out xml
run: cargo tarpaulin --out xml -- --nocapture

# send the code coverage for the Rust part to the coveralls.io
- name: Coveralls GitHub Action
Expand Down
162 changes: 156 additions & 6 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion rust/agama-dbus-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ macaddr = "1.0"
async-trait = "0.1.75"
axum = { version = "0.7.4", features = ["ws"] }
serde_json = "1.0.113"
tower-http = { version = "0.5.1", features = ["trace"] }
tower-http = { version = "0.5.1", features = ["compression-br", "trace"] }
tracing-subscriber = "0.3.18"
tracing-journald = "0.3.0"
tracing = "0.1.40"
Expand All @@ -47,6 +47,7 @@ chrono = { version = "0.4.34", default-features = false, features = [
"clock",
] }
pam = "0.8.0"
serde_with = "3.6.1"

[[bin]]
name = "agama-dbus-server"
Expand Down
Loading
Loading