-
Notifications
You must be signed in to change notification settings - Fork 519
Use subcrates #169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use subcrates #169
Changes from 3 commits
9a4bc9e
dabc86a
41d9de3
db73f71
fb357fb
55f4f35
080ca66
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| [package] | ||
| name = "crossbeam" | ||
| version = "0.3.2" | ||
| authors = ["Aaron Turon <[email protected]>"] | ||
| version = "0.4.0" | ||
| authors = ["The Crossbeam Project Developers"] | ||
| description = "Support for lock-free data structures, synchronizers, and parallel programming" | ||
| repository = "https://github.com/crossbeam-rs/crossbeam" | ||
| documentation = "https://docs.rs/crossbeam" | ||
|
|
@@ -10,7 +10,14 @@ license = "Apache-2.0/MIT" | |
| categories = ["concurrency", "data-structures"] | ||
|
|
||
| [features] | ||
| nightly = [] | ||
| default = ["use_std"] | ||
| nightly = ["crossbeam-epoch/nightly"] | ||
| use_std = ["crossbeam-epoch/use_std"] | ||
|
||
|
|
||
| [dependencies] | ||
| crossbeam-epoch = "0.2" | ||
| crossbeam-utils = "0.2" | ||
| crossbeam-deque = "0.1" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we not want to expose
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Eventually, |
||
|
|
||
| [dev-dependencies] | ||
| rand = "0.4" | ||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could also include
crossbeam-utils/nightlyandcrossbeam-channel/nightly.