Skip to content

Commit

Permalink
Reduce used tokio features
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed Jan 29, 2025
1 parent 47f3aea commit e247344
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aardvark-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gettext-rs = { version = "0.7", features = ["gettext-system"] }
gtk = { version = "0.9", package = "gtk4", features = ["gnome_47"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.128"
tokio = { version = "1.42.0", features = ["full"] }
tokio = { version = "1.42.0", features = ["sync"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
sourceview = { package = "sourceview5", version = "0.9" }

Expand Down
2 changes: 1 addition & 1 deletion aardvark-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ p2panda-store = "0.2.0"
p2panda-stream = "0.2.0"
p2panda-sync = { version = "0.2.0", features = ["log-sync"] }
serde = { version = "1.0.215", features = ["derive"] }
tokio = { version = "1.42.0", features = ["full"] }
tokio = { version = "1.42.0", features = ["rt", "sync"] }
tokio-stream = "0.1.17"

0 comments on commit e247344

Please sign in to comment.