Skip to content

Commit

Permalink
review findings
Browse files Browse the repository at this point in the history
  • Loading branch information
bircni committed Dec 4, 2024
1 parent a354173 commit 2b9e1e6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
19 changes: 9 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,15 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
egui = { version = "0.29.1", default-features = false } # ui
directories = "5.0" # fetch user folders
dunce = "1.0.5" # canonicalize paths
sysinfo = { version = "0.32", default-features = false, features = [
"disk",
] } # fetch disks
serde = { version = "1", features = [
"derive",
], optional = true } # persistent storage

egui = { version = "0.29.1", default-features = false }
# fetch user folders
directories = "5.0"
# canonicalize paths
dunce = "1.0.5"
# fetch disks
sysinfo = { version = "0.32", default-features = false, features = ["disk"] }
# persistent storage
serde = { version = "1", features = ["derive"], optional = true }

[dev-dependencies]
eframe = { version = "0.29.1", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn main() -> eframe::Result<()> {
## Examples

The examples can be found in the [examples](examples) folder.
Further descriptions can be found in the [EXAMPLES.](examples/EXAMPLES.md) file.
Further descriptions can be found in the [EXAMPLES.](examples/README.md) file.

## Keybindings

Expand Down
File renamed without changes.

0 comments on commit 2b9e1e6

Please sign in to comment.