You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the public facing API should look something like this:
use example_crate::example_struct;let a = example_struct::new("django-1.0-1-py27-cp33m-linux_x86_64.whl");println!("{}", a.distribution);// > "django"println!("{}", a.version);// > You think of it, idk but probably pyverprintln!("{}", a.build_tag);// > Some(1)println!("{}", a.python_tag);// Some Enum idkprintln!("{}", a.abi_tag);// Some Enum idkprintln!("{}", a.platform_tag);// Some Enum idk
Checklist
Did you do it john?
The text was updated successfully, but these errors were encountered:
Description
Create a Parser and relevant datastructures for the PEP-491 Wheel file-format naming convention.
the public facing API should look something like this:
Checklist
The text was updated successfully, but these errors were encountered: