With cargo-tree, I can see my project depends on libc v0.2.62
$ cargo tree -p libc -i | grep libc
libc v0.2.62
But it actually requires two versions GLIB_2.14 and GLIBC2.18.
ldd error messages are as follows:
/lib64/libc.so.6: version `GLIBC_2.18' not found
/lib64/libc.so.6: version `GLIBC_2.14' not found
I am able to get GLIBC_2.14 but not GLIBC_2.18. So I plan to switch to older versions of Rust or some crates I use. I need to find out which one depends on GLIBC_2.18 first. Can anyone help me?