I'm trying to work with the rust-http library, and I'd like to use it as the basis for a small project.
I have no idea how to use something that I can't install via rustpkg install <remote_url>
. In fact, I found out today that rustpkg
is now deprecated.
If I git clone
the library and run the appropriate make
commands to get it built, how do I use it elsewhere? I.e. how do I actually use extern crate http
?
extern mod
has been recently renamed toextern crate
. – Bant