| Crates.io | ppapi |
| lib.rs | ppapi |
| version | 0.1.2 |
| created_at | 2014-11-21 08:36:19.30235+00 |
| updated_at | 2015-12-11 23:55:08.907714+00 |
| description | Rust idiomatic bindings to parts of the Pepper API |
| homepage | |
| repository | https://github.com/DiamondLovesYou/rust-ppapi.git |
| max_upload_size | |
| id | 236 |
| size | 721,543 |
Rust idiomatic bindings to the Pepper API. This API is experimental. Expect it to change somewhat.
You'll need to build and install the PNaCl/NaCl Rust fork first. Then run:
export NACL_SDK_ROOT=path/to/pepper_39
Lastly, run:
cargo build --target le32-unknown-nacl
And profit!
Don't run build.sh. It is used to update FFI bindings.
Taken from pnacl-hello-world:
#![crate_name = "pnacl-hello-world"]
#![crate_type = "bin"]
#![no_main]
extern crate ppapi;
use std::collections::HashMap;
#[no_mangle]
#[cfg(target_os = "nacl")]
// Called when an instance is created.
// This is called from a new task. It is perfectly "safe" to panic!() here, or in
// any callback (though it will result in instance termination).
pub extern fn ppapi_instance_created(_instance: ppapi::Instance,
_args: HashMap<String, String>) {
println!("Hello, world!");
}
#[no_mangle]
pub extern fn ppapi_instance_destroyed() {
}
Unsupported due to rust-ppapi's use of threads.