Remove unused dependencies

This commit is contained in:
Vadim Kaushan 2020-06-14 14:22:50 +03:00
parent a9b4b7149f
commit a131c16360
No known key found for this signature in database
GPG Key ID: A501C5DF67C05C4E
2 changed files with 0 additions and 7 deletions

View File

@ -8,9 +8,5 @@ description = "Low level access to the VexRiscv processor"
keywords = ["riscv", "register", "peripheral", "vexriscv"]
license = "ISC"
[dependencies]
bare-metal = ">=0.2.0,<0.2.5"
bit_field = "0.9.0"
[features]
inline-asm = []

View File

@ -18,7 +18,4 @@
#![no_std]
#![cfg_attr(feature = "inline-asm", feature(asm))]
extern crate bare_metal;
extern crate bit_field;
pub mod register;