C.f. #1238
If I understand correctly:
means that MSRV >= 1.56.0
means MSRV >= 1.56.0 (
https://docs.rs/crate/bitflags/2.1.0/source/Cargo.toml#55)
|
[[package]] |
|
name = "libc" |
|
version = "0.2.174" |
means MSRV >= 1.63.0 (
https://docs.rs/crate/libc/0.2.174/source/Cargo.toml#52)
|
|| cfg!(windows) && path.chars().nth(1).is_some_and(|x| x == ':') |
means MSRV >= 1.70.0 (
https://blog.rust-lang.org/2023/06/01/Rust-1.70.0/) (unless we want to say that there is a different MSRV depending on which features are enabled?)
|
assert!(get_cached_memory().is_ok_and(|m| m.1 == 20 * 1024 * 1024)); |
means
tests are MSRV >= 1.70.0 for the same reason
C.f. #1238
If I understand correctly:
git2-rs/Cargo.toml
Line 16 in 7415113
git2-rs/Cargo.toml
Line 20 in 7415113
git2-rs/Cargo.lock
Lines 474 to 476 in 7415113
git2-rs/src/cred.rs
Line 301 in 7415113
git2-rs/src/opts.rs
Line 527 in 7415113