We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I use cargo for example test code from rmp crate:
extern crate rmp as msgpack; extern crate rustc_serialize; use rustc_serialize::Encodable; use msgpack::Encoder; fn main() { let val = (42u8, "the Answer"); // The encoder borrows the bytearray buffer. let mut buf = [0u8; 13]; val.encode(&mut Encoder::new(&mut &mut buf[..])); assert_eq!([0x92, 0x2a, 0xaa, 0x74, 0x68, 0x65, 0x20, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72], buf); }
I add cargo.toml and this work fine from console, but how I can build project with visualrust? Maybe can add something like customising build process?
The text was updated successfully, but these errors were encountered:
#162
Sorry, something went wrong.
Duplicate of #162
No branches or pull requests
Hi, I use cargo for example test code from rmp crate:
I add cargo.toml and this work fine from console, but how I can build project with visualrust? Maybe can add something like customising build process?
The text was updated successfully, but these errors were encountered: