Skip to content

Commit

Permalink
Some fixes for CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Apr 14, 2023
1 parent a01b7ca commit 416988e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ embedded-io = { version = "0.4", optional = true }
pretty-hex = { version = "0.3", default-features = false }

# for non_async
futures = "0.3"
futures = { version = "0.3", default-features = false }

[features]
std = ["snafu/std", "snafu/backtraces", "rsa"]
Expand Down
2 changes: 1 addition & 1 deletion embassy/demos/common/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub struct SSHConfig {

impl SSHConfig {
pub fn new() -> Result<Self> {
let keys = [SignKey::generate(KeyType::Ed25519)?];
let keys = [SignKey::generate(KeyType::Ed25519, None)?];
Ok(Self {
keys
})
Expand Down

0 comments on commit 416988e

Please sign in to comment.