-
Notifications
You must be signed in to change notification settings - Fork 68
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
Improve general code quality #6
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! Cheers
README.md
Outdated
Thanks to Joe Ellis (@joechrisellis) and Ionuț Mihalcea (@ionut-arm) for their early work on the | ||
crate. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At least add yourself as well - "Joe Ellis, Ionut Mihalcea, and Hugues de Valon developed the early prototype...". Seems weird to only mention us two when it's not on your personal repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alternatively just don't mention anyone - Parsec developers created ....
though that's kinda superfluous
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm yeah I wanted to credit those involved in this... I will just add them as co-author of this specific commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(I should have done that for the first commit but I forgot)
let supported_platforms = vec![ | ||
"x86_64-unknown-linux-gnu".to_string(), | ||
"aarch64-unknown-linux-gnu".to_string(), | ||
"armv7-unknown-linux-gnueabi".to_string(), | ||
"arm-unknown-linux-gnueabi".to_string(), | ||
]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
env::var("PKCS11_SOFTHSM2_MODULE") | ||
.unwrap_or_else(|_| "/usr/local/lib/softhsm/libsofthsm2.so".to_string()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! 💯
use std::thread; | ||
|
||
#[test] | ||
#[serial] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, didn't know about this before
This commit: * uses a ci.sh script to perform all CI tasks * adds cross-compilation logic * improves Slot to integer conversion handling (thanks to @george-hopkins) * adds some deny * implements Copy, Debug, Clone where needed * moves tests to the integration test folder * fixes various lints * adds credit Co-authored-by: George Hopkins <george-hopkins@null.net> Co-authored-by: Joe Ellis <joe.ellis@arm.com> Co-authored-by: Ionut Mihalcea <ionut.mihalcea@arm.com> Signed-off-by: Hugues de Valon <hugues.devalon@arm.com>
Signed-off-by: Hugues de Valon <hugues.devalon@arm.com>
This commit:
@george-hopkins)
Co-authored-by: George Hopkins george-hopkins@null.net
Signed-off-by: Hugues de Valon hugues.devalon@arm.com