Skip to content

Commit

Permalink
Revert from min_specialization to specialization
Browse files Browse the repository at this point in the history
  • Loading branch information
pschafhalter committed Jul 22, 2020
1 parent c9133b4 commit faca967
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ build = "build.rs"
default-run = "erdos"
license = "Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/erdos/0.2.0/erdos/"
documentation = "https://docs.rs/crate/erdos/"
repository = "https://github.com/erdos-project/erdos"
description = """
ERDOS is a platform for developing self-driving cars and robotics applications.
"""
keywords = ["data-flow", "robotics", "autonomos", "driving"]

[dependencies]
abomonation = { git = "https://github.com/erdos-project/abomonation" }
abomonation = "0.7.3"
abomonation_derive = "0.5.0"
async-trait = "0.1.18"
bincode = "1.2.1"
Expand Down
6 changes: 4 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,11 @@
//! turns ERDOS pipelines into
//! [Kahn process networks](https://en.wikipedia.org/wiki/Kahn_process_networks).

// Required for specialization.
#![allow(incomplete_features)]

#![feature(get_mut_unchecked)]
#![feature(min_specialization)]
#![feature(rustc_attrs)]
#![feature(specialization)]
#![feature(box_into_pin)]

// Re-exports of libraries used in macros.
Expand Down

0 comments on commit faca967

Please sign in to comment.