You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
760 B
28 lines
760 B
[package] |
|
name = "my-tasks" |
|
version = "0.1.0" |
|
authors = ["Jérôme"] |
|
edition = "2018" |
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|
|
|
[features] |
|
integration_tests = ["local_calendar_mocks_remote_calendars"] |
|
local_calendar_mocks_remote_calendars = [] |
|
|
|
[dependencies] |
|
env_logger = "0.8" |
|
log = "0.4" |
|
tokio = { version = "1.2", features = ["macros", "rt", "rt-multi-thread"]} |
|
reqwest = "0.11" |
|
minidom = "0.13" |
|
url = { version = "2.2", features = ["serde"] } |
|
bitflags = "1.2" |
|
serde = { version = "1.0", features = ["derive"] } |
|
serde_json = "1.0" |
|
async-trait = "0.1" |
|
uuid = { version = "0.8", features = ["v4"] } |
|
sanitize-filename = "0.3" |
|
ical = "0.7" |
|
ics = "0.5" |
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|