Cargo Features

[dependencies]
icalendar = { version = "0.16.1", default-features = false, features = ["parser", "serde", "serde_json", "chrono-tz"] }
default = parser

The parser feature is set by default whenever icalendar is added without default-features = false somewhere in the dependency tree.

parser default = nom

Affects icalendar::parser

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

serde implicit feature

Enables serde

serde:

A generic serialization/deserialization framework

serde_json implicit feature

Enables serde_json

serde_json:

A JSON serialization file format

chrono-tz implicit feature

Enables chrono-tz ^0.8

chrono-tz:

TimeZone implementations for chrono from the IANA database

Affects date_time::ymd_hm_tzid, date_time::with_timezone

nom parser