Skip to content

Commit 037c814

Browse files
authored
Merge pull request #64 from linux-credentials/change-project-prefix
Rename folders and binaries with credentialsd prefix
2 parents 1918352 + 78bc2a6 commit 037c814

77 files changed

Lines changed: 163 additions & 142 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/main.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,18 @@ jobs:
3636
# Probably has to do with forking the test processes.
3737
run: meson test --interactive
3838
working-directory: build/
39-
- name: Check clippy recommendations
40-
run: env CARGO_HOME=build/cargo-home cargo clippy --manifest-path credsd/Cargo.toml --target-dir build/credsd/target/release
41-
- name: Check formatting
39+
- name: Check clippy recommendations (Common)
40+
run: env CARGO_HOME=build/cargo-home cargo clippy --manifest-path credentialsd-common/Cargo.toml --target-dir build/credentialsd-common/target/release
41+
- name: Check clippy recommendations (UI)
42+
run: env CARGO_HOME=build/cargo-home cargo clippy --manifest-path credentialsd-ui/Cargo.toml --target-dir build/credentialsd-ui/target/release
43+
- name: Check clippy recommendations (Server)
44+
run: env CARGO_HOME=build/cargo-home cargo clippy --manifest-path credentialsd/Cargo.toml --target-dir build/credentialsd/target/release
45+
- name: Check formatting (Common)
4246
run: cargo fmt --check
43-
working-directory: credsd
47+
working-directory: credentialsd-common
48+
- name: Check formatting (UI)
49+
run: cargo fmt --check
50+
working-directory: credentialsd-ui
51+
- name: Check formatting (Server)
52+
run: cargo fmt --check
53+
working-directory: credentialsd

.vscode/launch.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
{
88
"type": "lldb",
99
"request": "launch",
10-
"name": "Debug Daemon (credsd)",
11-
"program": "${workspaceFolder}/build/credsd/src/credsd",
10+
"name": "Debug Daemon (credentialsd)",
11+
"program": "${workspaceFolder}/build/credentialsd/src/credentialsd",
1212
"args": [],
1313
"env": {
14-
"RUST_LOG": "credsd=debug,libwebauthn=debug,libwebauthn::webauthn=debug,libwebauthn=warn,libwebauthn::proto::ctap2::preflight=debug,libwebauthn::transport::channel=debug,zbus::object_server::debug,zbus=debug"
14+
"RUST_LOG": "credentialsd=debug,libwebauthn=debug,libwebauthn::webauthn=debug,libwebauthn=warn,libwebauthn::proto::ctap2::preflight=debug,libwebauthn::transport::channel=debug,zbus::object_server::debug,zbus=debug"
1515
},
1616
"sourceLanguages": ["rust"],
1717
"cwd": "${workspaceFolder}",
@@ -20,11 +20,11 @@
2020
{
2121
"type": "lldb",
2222
"request": "launch",
23-
"name": "Debug UI (creds-ui)",
24-
"program": "${workspaceFolder}/build/creds-ui/src/creds-ui",
23+
"name": "Debug UI (credentialsd-ui)",
24+
"program": "${workspaceFolder}/build/credentialsd-ui/src/credentialsd-ui",
2525
"args": [],
2626
"env": {
27-
"GSETTINGS_SCHEMA_DIR": "${workspaceFolder}/build/creds-ui/data",
27+
"GSETTINGS_SCHEMA_DIR": "${workspaceFolder}/build/credentialsd-ui/data",
2828
"RUST_LOG": "creds_ui=debug,zbus::trace,zbus::object_server::debug"
2929
},
3030
"sourceLanguages": ["rust"],
@@ -35,7 +35,7 @@
3535
"compounds": [
3636
{
3737
"name": "Server/Client",
38-
"configurations": ["Debug UI (creds-ui)", "Debug Daemon (credsd)"]
38+
"configurations": ["Debug UI (credentialsd-ui)", "Debug Daemon (credentialsd)"]
3939
}
4040
]
4141
}

README.md

Lines changed: 4 additions & 4 deletions

contrib/xyz.iinuwa.credentials.CredentialManager.xml renamed to contrib/xyz.iinuwa.credentialsd.Credentials.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<arg type="s" direction="out"/>
88
</method>
99
</interface>
10-
<interface name="xyz.iinuwa.credentials.Credentials1">
10+
<interface name="xyz.iinuwa.credentialsd.Credentials1">
1111
<method name="CreateCredential">
1212
<arg name="request" type="a{sv}" direction="in"/>
1313
<arg type="a{sv}" direction="out"/>
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "creds-lib"
2+
name = "credentialsd-common"
33
version = "0.1.0"
44
edition = "2024"
55
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]

0 commit comments

Comments
 (0)