shaobo-he-aws
shaobo-he-aws
Hello, Our project [Cedar](https://github.com/cedar-policy/cedar) depends on `lalrpop-util`. Updating to 0.20.1 causes our code to panic. To reproduce, ``` git clone https://github.com/cedar-policy/cedar.git cd cedar/cedar-policy-cli/sample-data/sandbox_a cargo run evaluate \ --principal 'User::"alice"' \...
Consider the following program, ```rust use ipnet::IpNet; use std::net::IpAddr; fn main() { assert!("ffff:ffff:ffff:ffff:ffff:ffff::ffff:ffff/114".parse::().is_ok()); assert!("ffff:ffff:ffff:ffff:ffff:ffff::ffff:ffff".parse::().is_ok()); } ``` The second assertion fails while the first one holds. `ffff:ffff:ffff:ffff:ffff:ffff::ffff:ffff` contains 8 `ffff`s and...
It seems there will be a lot of wasted cycles when we use `ArbitraryGenerator` and `ForcedRng`. IIUC, `ForcedRng` will be called again if the generation function returns a `None`, which...