Expand description
Parses a compiled binary and returns a list of used DataKey
s used by it.
Unknown key names are ignored.
assert_eq!(
icu_datagen::keys_from_bin("target/release/my-app")?,
vec![
icu::list::provider::AndListV1Marker::KEY,
icu::list::provider::OrListV1Marker::KEY,
],
);