Skip to content
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

Re-export crossbeam-skiplist in crossbeam crate #889

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion Cargo.toml
Expand Up @@ -26,12 +26,13 @@ std = [
"crossbeam-deque/std",
"crossbeam-epoch/std",
"crossbeam-queue/std",
"crossbeam-skiplist/std",
"crossbeam-utils/std",
]

# Enable to use APIs that require `alloc`.
# This is enabled by default and also enabled if the `std` feature is enabled.
alloc = ["crossbeam-epoch/alloc", "crossbeam-queue/alloc"]
alloc = ["crossbeam-epoch/alloc", "crossbeam-queue/alloc", "crossbeam-skiplist/alloc"]

[dependencies]
cfg-if = "1"
Expand Down Expand Up @@ -60,6 +61,12 @@ path = "./crossbeam-queue"
default-features = false
optional = true

[dependencies.crossbeam-skiplist]
version = "0.1.0"
path = "./crossbeam-skiplist"
default-features = false
optional = true

[dependencies.crossbeam-utils]
version = "0.8.5"
path = "./crossbeam-utils"
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Expand Up @@ -74,6 +74,9 @@ cfg_if! {

#[doc(inline)]
pub use crossbeam_queue as queue;

#[doc(inline)]
pub use crossbeam_skiplist as skiplist;
}
}

Expand Down