| Crates.io | glibc_version |
| lib.rs | glibc_version |
| version | 0.1.2 |
| created_at | 2021-03-24 05:32:29.264891+00 |
| updated_at | 2021-03-24 05:37:33.452485+00 |
| description | Discover GNU libc version at build time |
| homepage | https://github.com/delta-io/delta.rs |
| repository | |
| max_upload_size | |
| id | 372836 |
| size | 4,929 |
glibc_versionCrate to help rust projects discover GNU libc version at build time. Expected
to be used in build.rs.
let ver = glibc_version::get_version().unwrap();
println!("glic version: {}.{}", ver.major, ver.minor);