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

feat(dcap): Impl DCAP RA types/handlers #139

Merged
merged 8 commits into from
Aug 2, 2024

Add comments fpr attestator related types

69f4033
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

feat(dcap): Impl DCAP RA types/handlers #139

Add comments fpr attestator related types
69f4033
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Aug 2, 2024 in 1s

clippy

20 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 20
Note 0
Help 0

Versions

  • rustc 1.80.0 (051478957 2024-07-21)
  • cargo 1.80.0 (376290515 2024-07-16)
  • clippy 0.1.80 (0514789 2024-07-21)

Annotations

Check warning on line 320 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:320:28
    |
320 |             println!("{}", AccountId::new("wasm", tm_pk.as_bytes()).unwrap());
    |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 310 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:310:22
    |
310 |             let sk = XPrv::from_str(&sk_str).unwrap();
    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 307 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:307:28
    |
307 |             println!("{}", AccountId::new("wasm", tm_pk.as_bytes()).unwrap());
    |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 298 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:298:26
    |
298 |             let setoff = decrypt(&sk.to_bytes(), &ciphertext).unwrap();
    |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 296 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:296:30
    |
296 |             let ciphertext = hex::decode(setoff).unwrap();
    |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 276 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:276:17
    |
276 |                 d.try_into().unwrap()
    |                 ^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 255 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:255:25
    |
255 |                 let o = decrypt(&sk.to_bytes(), &ciphertext).unwrap();
    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 252 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:252:30
    |
252 |             let ciphertext = hex::decode(obligation).unwrap();
    |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used
note: the lint level is defined here
   --> utils/mtcs-intent/src/main.rs:6:5
    |
6   |     clippy::unwrap_used,
    |     ^^^^^^^^^^^^^^^^^^^

Check warning on line 320 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:320:28
    |
320 |             println!("{}", AccountId::new("wasm", tm_pk.as_bytes()).unwrap());
    |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 310 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:310:22
    |
310 |             let sk = XPrv::from_str(&sk_str).unwrap();
    |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 307 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:307:28
    |
307 |             println!("{}", AccountId::new("wasm", tm_pk.as_bytes()).unwrap());
    |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 298 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:298:26
    |
298 |             let setoff = decrypt(&sk.to_bytes(), &ciphertext).unwrap();
    |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 296 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:296:30
    |
296 |             let ciphertext = hex::decode(setoff).unwrap();
    |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 276 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:276:17
    |
276 |                 d.try_into().unwrap()
    |                 ^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 255 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:255:25
    |
255 |                 let o = decrypt(&sk.to_bytes(), &ciphertext).unwrap();
    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used

Check warning on line 252 in utils/mtcs-intent/src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

used `unwrap()` on a `Result` value

warning: used `unwrap()` on a `Result` value
   --> utils/mtcs-intent/src/main.rs:252:30
    |
252 |             let ciphertext = hex::decode(obligation).unwrap();
    |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: if this value is an `Err`, it will panic
    = help: consider using `expect()` to provide a better panic message
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_used
note: the lint level is defined here
   --> utils/mtcs-intent/src/main.rs:6:5
    |
6   |     clippy::unwrap_used,
    |     ^^^^^^^^^^^^^^^^^^^

Check warning on line 34 in apps/mtcs/enclave/src/mtcs_server.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `config` is never read

warning: field `config` is never read
  --> apps/mtcs/enclave/src/mtcs_server.rs:34:5
   |
33 | pub struct MtcsService<A> {
   |            ----------- field in this struct
34 |     config: Config, // TODO: this config is not used anywhere
   |     ^^^^^^
   |
   = note: `MtcsService` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
   = note: `#[warn(dead_code)]` on by default

Check warning on line 22 in utils/cycles-sync/src/wasmd_client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

methods `query_raw`, `deploy`, and `init` are never used

warning: methods `query_raw`, `deploy`, and `init` are never used
  --> utils/cycles-sync/src/wasmd_client.rs:22:8
   |
9  | pub trait WasmdClient {
   |           ----------- methods in this trait
...
22 |     fn query_raw<R: DeserializeOwned + Default>(
   |        ^^^^^^^^^
...
37 |     fn deploy<M: ToString>(
   |        ^^^^^^
...
44 |     fn init<M: ToString>(
   |        ^^^^
   |
   = note: `#[warn(dead_code)]` on by default

Check warning on line 22 in utils/cycles-sync/src/wasmd_client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

methods `query_raw`, `deploy`, and `init` are never used

warning: methods `query_raw`, `deploy`, and `init` are never used
  --> utils/cycles-sync/src/wasmd_client.rs:22:8
   |
9  | pub trait WasmdClient {
   |           ----------- methods in this trait
...
22 |     fn query_raw<R: DeserializeOwned + Default>(
   |        ^^^^^^^^^
...
37 |     fn deploy<M: ToString>(
   |        ^^^^^^
...
44 |     fn init<M: ToString>(
   |        ^^^^
   |
   = note: `#[warn(dead_code)]` on by default

Check warning on line 34 in apps/mtcs/enclave/src/mtcs_server.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `config` is never read

warning: field `config` is never read
  --> apps/mtcs/enclave/src/mtcs_server.rs:34:5
   |
33 | pub struct MtcsService<A> {
   |            ----------- field in this struct
34 |     config: Config, // TODO: this config is not used anywhere
   |     ^^^^^^
   |
   = note: `MtcsService` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
   = note: `#[warn(dead_code)]` on by default