Update time dependency#40
Conversation
|
Thanks for your contribution, I'll have a look to see if 0.3 is compatible with the But in any case we can go from 0.1 to 0.2 that's for sure. |
| @@ -1 +1,2 @@ | |||
| target | |||
| Cargo.lock | |||
There was a problem hiding this comment.
This crate is both a library and an application so I decided to check in Cargo.lock due to the latter, see: https://doc.rust-lang.org/cargo/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries
There was a problem hiding this comment.
I removed the change to Cargo.lock and .gitignore
|
Since am I coincidentally also involved in an OS project, I know what that error is and how to fix it. It's missing compiler intrinsics for your OS, which you can fix by forking the compiler intrinsics crate: https://github.com/ardaku/compiler-builtins/tree/quantii This fork adds intrinsics support for ARM and RISC-V for the OS, feel free to steal any of it. Here's a link to what kind of patches might be necessary: |
|
I'll also add that this is how we link it to our OS: https://github.com/ardaku/quantii/blob/main/Cargo.toml#L17 And that you have to rename the compiler-builtins crate: https://github.com/ardaku/compiler-builtins/blob/quantii/Cargo.toml#L3 |
This should close