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

Update dependencies, fixes for old QEMU #1

Closed
wants to merge 1 commit into from
Closed
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
61 changes: 32 additions & 29 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions dummy-uniffi/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/build.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/bin/gui.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
10 changes: 5 additions & 5 deletions emulator/src/gui.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down Expand Up @@ -181,7 +181,7 @@ pub fn init_gui(
.send(format!("> DisplayAddress({})", value))
.unwrap();
match sdk_cloned.display_address(value).await {
Ok(v) => log_cloned.send(format!("< {}", v)).unwrap(),
Ok(v) => log_cloned.send(format!("< {:?}", v)).unwrap(),
Err(e) => log::warn!("Display addr err: {:?}", e),
}
});
Expand Down
8 changes: 4 additions & 4 deletions emulator/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/link.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/tests/bitcoin.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/tests/init.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/tests/mod.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/utils/mod.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/utils/model.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
8 changes: 4 additions & 4 deletions emulator/src/utils/report.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Portal Hardware Wallet firmware and supporting software libraries
//
//
// Copyright (C) 2024 Alekos Filini
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

Expand Down
Loading
Loading