rename the crate to sc

This commit is contained in:
Jorge Aparicio 2017-01-11 19:37:26 -05:00
parent 675f5a9c81
commit c231ece2c7
2 changed files with 2 additions and 6 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "syscall"
version = "0.2.1"
name = "sc"
version = "0.1.0"
description = "Raw system calls"
repository = "https://github.com/kmcallister/syscall.rs"
readme = "README.md"

View file

@ -9,13 +9,9 @@
//! Raw system calls for Rust.
#![crate_name="syscall"]
#![crate_type="lib"]
#![feature(asm)]
#![deny(warnings)]
#![no_std]
#![allow(unused_mut)]
#[cfg(test)]
extern crate std;