Skip to content

Commit

Permalink
build: drop "async" feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Perez committed Oct 27, 2023
1 parent 95460f8 commit 92bff8a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ unindent = { version = "0.2.1", optional = true }
inventory = { version = "0.3.0", optional = true }

# coroutine implementation
futures-task = { version = "0.3", optional = true }
futures-task = "0.3"

# crate integrations that can be added using the eponymous features
anyhow = { version = "1.0", optional = true }
Expand Down Expand Up @@ -64,9 +64,7 @@ futures = "0.3.28"
pyo3-build-config = { path = "pyo3-build-config", version = "0.20.0", features = ["resolve-config"] }

[features]
default = ["async", "macros"]

async = ["futures-task", "macros"]
default = ["macros"]

# Enables pyo3::inspect module and additional type information on FromPyObject
# and IntoPy traits
Expand Down Expand Up @@ -106,7 +104,6 @@ nightly = []
# This is mostly intended for testing purposes - activating *all* of these isn't particularly useful.
full = [
"macros",
"async",
# "multiple-pymethods", # TODO re-add this when MSRV is greater than 1.62
"chrono",
"num-bigint",
Expand Down

0 comments on commit 92bff8a

Please sign in to comment.