-
Notifications
You must be signed in to change notification settings - Fork 137
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 sysinfo crate to 0.29.6 #685
Conversation
Verified tor listener on windows and linux, Mac probably okay but can't check. |
For some reasons I'm getting a segfault when running this in release mode only on macOS arm64 (m1). Debug mode runs fine.
|
This:
Seems to fix the segfault. But I'm not sure if you need the |
Thanks! No, looks like new_all isn't needed here. Tested linux + windows again with changes. |
That single failing windows test is driving me insane. I'm just going to merge this and deal with that separately. |
Due to changes in rust, compilation was failing on windows and we need to update the sysinfo crate used by tor process handling to the latest. This also comes with API changes, namely that the
Process
struct can't be instantiated directly and needs to be searched in theSystem
struct.Changes now needs to be sanity tested on all platforms to ensure tor processes still start and terminate as expected.
Also contains updates to remove deprecation warnings from chrono related updates.