In stable Rust you create a Box by using the Box::new function.
Box::new
let boxed_int: Box<i32> = Box::new(1);