mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-25 19:47:55 +00:00
368784949e
* move to cargo clippy instead of using the clippy plugin fixes #729 * non-exectable scripts must be run with `sh` * don't build serde in the clippy travis job * only run clippy tests if installing clippy succeeds * why is travis so picky? * no more serde_codegen * serde_test_suite_deps has no features * don't use empty loops, llvm optimizes them to undefined behaviour * abort the clippy job when clippy lints are triggered * use caches on travis to speed up builds * why are we even using `travis-cargo`? * need to reinstall clippy frequently due to nightly updates * command line tools are hard
53 lines
1006 B
Rust
53 lines
1006 B
Rust
#![feature(lang_items, start, libc)]
|
|
#![no_std]
|
|
|
|
extern crate libc;
|
|
|
|
#[start]
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize {
|
|
0
|
|
}
|
|
|
|
#[lang = "eh_personality"]
|
|
#[no_mangle]
|
|
pub extern fn rust_eh_personality() {}
|
|
|
|
#[lang = "eh_unwind_resume"]
|
|
#[no_mangle]
|
|
pub extern fn rust_eh_unwind_resume() {}
|
|
|
|
#[lang = "panic_fmt"]
|
|
#[no_mangle]
|
|
pub extern fn rust_begin_panic(_msg: core::fmt::Arguments,
|
|
_file: &'static str,
|
|
_line: u32) -> ! {
|
|
unsafe {
|
|
libc::abort()
|
|
}
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Unit;
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Newtype(u8);
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Tuple(u8, u8);
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
struct Struct { f: u8 }
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
enum Enum {
|
|
Unit,
|
|
Newtype(u8),
|
|
Tuple(u8, u8),
|
|
Struct { f: u8 },
|
|
}
|