-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (27 loc) · 859 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "netupi"
version = "0.10.0"
edition = "2018"
default-run = "netupi"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
druid = { git = "https://github.com/linebender/druid.git", features=['im']}
ical = { git = "https://github.com/migmedia/ical-rs", features=['ical', 'generator'] }
uuid = { version = "0.8", features = ["v1"] }
chrono = { version = "0.4" }
rodio = { version = "0.14" }
anyhow = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
dirs = "4.0"
csv = "1.1"
notify-rust = "4"
lerp = { version = "0.4", features = ["derive"] }
clap = { version = "3.0.5", features = ["derive"] }
[dependencies.rusqlite]
version = "0.26.0"
features = ["bundled"]
# [dependencies.ical]
# version = "0.6.*"
# default-features = false
# features = ["ical", "vcard"]