Skip to content

Commit

Permalink
chore: apply lib.rs suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodie committed Apr 29, 2024
1 parent fb61dbf commit 8684f69
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ license = "MIT/Apache-2.0"
edition = "2021"

description = "Strongly typed iCalendar builder and parser."
keywords = ["calendar", "ical", "ics", "icalendar", "parser"]
keywords = ["calendar", "ical", "ics", "icalendar", "parser", "RFC5545", "RFC7986"]
categories = ["date-and-time", "data-structures", "parsing", ]

documentation = "https://docs.rs/icalendar/"
repository = "https://github.com/hoodie/icalendar-rs"
Expand All @@ -17,7 +18,7 @@ exclude = ["fixtures", ".github", ".gitignore", "*.json"]

[features]
default = ["parser"]
parser = ["nom"]
parser = ["dep:nom"]

[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
Expand All @@ -36,11 +37,11 @@ optional = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.uuid]
features = ["v4"]
version = "1"
version = "1.8"

[target.'cfg(target_arch = "wasm32")'.dependencies.uuid]
features = ["v4", "js"]
version = "1"
version = "1.8"

[dev-dependencies]
pretty_assertions = "1"
Expand Down

0 comments on commit 8684f69

Please sign in to comment.