Richard Neumann
Richard Neumann
While at it, use std::os::fd::owned::OwnedFd instead of custom implementation. Fixes #175
The current dependency on nix 0.26 results in multiple crate versions for bitflags. The latest release of nix (0.28) fixes this.
How is this software licensed? How may it be used? What fees / copyright restrictions do apply?
The current constant `PI2` has an weird name. It kinda suggest that it is an alternative version of `PI`, but it actually represents `2 * PI`. A rename to [`TAU`](https://en.wikipedia.org/wiki/Turn_(angle)#Proposals_for_a_single_letter_to_represent_2%CF%80)...
Currently there are German code fragments in the source code, such as `berechne_zeitgleichung` as well as comments and variables names within it. Though being a native German speaker myself, it'd...
Currently, newtype-wrapping an existing struct to change its naming scheme does not work: ```rust use serde::{Deserialize, Serialize}; use serde_json; // 1.0.140 mod other_crate { use serde::{Deserialize, Serialize}; #[derive(Debug, Default, Serialize,...
I had a use case where I needed to native-clone a serial port. I didn't want to limit my implementation to the two current implementors of `TTYPort` and `COMPort`, so...