Skip to content

Commit 04e32eb

Browse files
committed
Add Windows and Apple to build matrix
1 parent 542dce8 commit 04e32eb

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
**/*.rs.bk
33
.idea
44
feather.toml
5+
massif.out*

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
language: rust
22
rust: stable
3-
os: linux
3+
os:
4+
- linux
5+
- windows
6+
- osx
47
sudo: false
58

69
cache: cargo

server/src/main.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ extern crate serde_derive;
55
#[macro_use]
66
extern crate serde_json;
77

8+
use std::alloc::System;
9+
10+
#[global_allocator]
11+
static ALLOC: System = System;
12+
813
pub mod config;
914
pub mod initialhandler;
1015
pub mod io;

0 commit comments

Comments
 (0)