Skip to content

Commit

Permalink
tools/client: move to CoCo AA, use single threaded runtime
Browse files Browse the repository at this point in the history
Signed-off-by: Mikko Ylinen <[email protected]>
  • Loading branch information
mythi authored and Xynnn007 committed Jun 1, 2023
1 parent 4e22840 commit 5d94595
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 8 deletions.
30 changes: 25 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions tools/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ base64.workspace = true
clap = { version = "4.0.29", features = ["derive"] }
env_logger.workspace = true
jwt-simple = "0.11.4"
kbs_protocol = { git = "https://github.com/jialez0/attestation-agent", branch = "token" }
kbs_protocol = { git = "https://github.com/confidential-containers/attestation-agent", rev = "aa1d3c5" }
log.workspace = true
reqwest = { version = "0.11.18", default-features = false, features = ["cookies", "json"] }
serde_json.workspace = true
tokio.workspace = true
tokio.workspace = true
2 changes: 1 addition & 1 deletion tools/client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ enum ConfigCommands {
},
}

#[tokio::main]
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));

Expand Down

0 comments on commit 5d94595

Please sign in to comment.