Skip to content

Commit 1d3c6b8

Browse files
committed
Cleanup in Cargo.toml
1 parent 792273c commit 1d3c6b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["T.J. Telan <[email protected]>"]
33
categories = ["parser-implementations"]
4-
description = "A parser for git repo urls"
4+
description = "A parser for urls used by git"
55
documentation = "https://docs.rs/git-url-parse"
66
edition = "2024"
77
keywords = ["git", "url", "parser"]
@@ -14,7 +14,7 @@ rust-version = "1.85"
1414

1515
[features]
1616
default = ["url"]
17-
# Enable serde
17+
# Enable Serialize/Deserialize on structs with `serde` crate
1818
serde = ["dep:serde"]
1919
# Enable debugging logging with `log` crate
2020
log = ["dep:log"]
@@ -23,7 +23,7 @@ url = ["dep:url"]
2323

2424
[dependencies]
2525
nom = "8"
26-
getset = "0.1.6"
26+
getset = "0.1"
2727
thiserror = "2"
2828
serde = { version = "1", features = ["derive"], optional = true }
2929
log = { version = "0.4", optional = true }

0 commit comments

Comments
 (0)