Andrew Halle
Andrew Halle
My use case is passing some tensors created in Rust to PyTorch in an embedded Python interpreter. Having `pyo3/extension-module` enabled means that PyO3 won't link to `libpython`, so any binaries...
#### Use Case: Including NATS connection information in a config file which is deserialized with `serde`. #### Proposed Change: Derive (or otherwise implement) `Deserialize` on `ServerAddr` (possibly behind a `serde`...
Copying https://github.com/actions-rs/audit-check/issues/163 to this fork. ## Description This action calls `cargo generate-lockfile`, which overwrites `Cargo.lock` according to `cargo` docs[^1] > This command will create the Cargo.lock lockfile for the current...
The following code infinite loops. ```rust use fancy_regex::RegexBuilder; fn main() { let r = RegexBuilder::new("(x+x+)+(?=y)") .backtrack_limit(1) .build() .unwrap(); let _: Vec = r.find_iter("xxxxxxxxxxy").collect(); println!("done!"); } ``` We encountered this in...
Update time to fix build failure on Rust 1.80. ## Changes in this pull request Ran `cargo update time` in `packages/toolkit` ## Types of changes - [x] Bug fix (non-breaking...
### Describe the bug I have a crate that depends on `[email protected]` which, according to `cargo tree`, depends on `[email protected]`. `tiny-keccak` has a `CC0-1.0` license which is not specifically allowed...