1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-24 00:46:17 +04:00
rCore/crate/thread/Cargo.toml

11 lines
294 B
TOML
Raw Normal View History

2018-07-16 21:56:28 +04:00
[package]
2019-01-24 15:03:45 +04:00
name = "rcore-thread"
2018-07-16 21:56:28 +04:00
version = "0.1.0"
authors = ["WangRunji <wangrunji0408@163.com>"]
2019-01-24 15:03:45 +04:00
description = "Bare-metal thread scheduler and executor"
2018-11-19 11:46:40 +04:00
edition = "2018"
2018-07-16 21:56:28 +04:00
[dependencies]
log = "0.4"
2019-02-23 22:26:55 +04:00
spin = "0.5"
deque = { git = "https://github.com/wangrunji0408/deque.git", branch = "no_std" }