Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wrappers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ For example, if you want to pin `tokio` to `1.36.0`, you can add the following:
```toml
[dependencies]
tokio = { package = "shuttle-tokio", version = "0.1.0" }
tokio-version-importer-do-not-use-directly = { version = "=1.36.0" }
tokio-version-importer-do-not-use-directly = { package = "tokio", version = "=1.36.0" }
```

A more robust alternative which removes the possibility of accidentally using the version importer crate is the following:
Expand Down
Loading