Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
frederik-uni authored Aug 30, 2024
1 parent 0d74f07 commit 4ed652f
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# cargotom
# cargotom
## Features
### Code actions
- "Make Workspace dependency" => This will generate `{ workspace = true }` for the dependency
- "Expand dependency specification" => This will convert from `"0.1.0"` to `{ version = "0.1.0" }`
- "Collapse dependency specification" => This will convert from `{ version = "0.1.0" }` to `"0.1.0`
- "Open Docs" => opens docs.rs/...
- "Open crates.io" => opens crates.io/...
- "Upgrade" => will upgrade the dependency version to the latest version
- "Upgrade All " => will upgrade every dependency version to the latest version
- "Update All" => will run `cargo run`

### Code completion
#### Dependencies
- crate names(online/offline)
- crate versions(online/offline)
- crate features(online/offline)
- feature key when version after the key `crate = "0.1.0"` => `crate = {ve"0.1.0"` to `crate = { version = "0.1.0" }`

### Diagnostics
- check if crate needs update
- check if crate version exists
- check if crate features exist

0 comments on commit 4ed652f

Please sign in to comment.