Skip to content

Commit

Permalink
Fix tokio feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle authored and gabrielesvelto committed Mar 11, 2024
1 parent 96c647f commit f914711
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ serde_json = "1.0"
sha2 = "0.10"
simplelog = { version = "0.12", optional = true, features = ["local-offset"] }
symbolic = { version = "12", features = ["demangle", "cfi"] }
tokio = { version = "1.23", optional = true }
tokio = { version = "1.23", optional = true, features = ["rt-multi-thread"] }
url = "2.2"
uuid = "1"

Expand All @@ -69,6 +69,11 @@ ci = ["github"]
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
pr-run-mode = "upload"

0 comments on commit f914711

Please sign in to comment.