-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
51 lines (46 loc) · 1.33 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "malakal"
description = "a day-planning calendar app based on egui"
version = "0.1.11"
edition = "2021"
license-file = "LICENSE"
readme = "README.org"
repository = "https://github.com/shouya/malakal"
homepage = "https://github.com/shouya/malakal"
documentation = "https://docs.rs/malakal"
keywords = ["egui", "calendar", "desktop"]
categories = ["gui"]
# optimize dependencies for debug builds
[profile.dev.package."*"]
opt-level = 2
[dependencies]
eframe = "0.26.2"
chrono = { version = "0.4.34", default-features = false, features = ["std"] }
chrono-tz = "0.8.6"
derive_builder = "0.20.0"
intervaltree = "0.2.7"
uuid = { version = "1.7.0", features = ["v4"] }
# only for ics generation
ics = "0.5.8"
# only for ics parsing
ical = { version = "0.10.0", features = ["ical"] }
# for webdav support (work in progress)
# kitchen-fridge = { git = "https://github.com/shouya/kitchen-fridge.git" }
rusqlite = {version = "0.31.0", features = ["bundled", "chrono"] }
anyhow = { version = "1.0.80" }
log = "0.4.21"
env_logger = "0.11.2"
regex = "1.10.3"
toml = "0.8.10"
serde = "1.0.197"
humantime = "2.1.0"
notify-rust = { version = "4.10.0" }
timer = "0.2.0"
sysinfo = "0.30.6"
serde_with = { version = "3.6.1", features = ["chrono"] }
dirs = "5.0.1"
filetime = "0.2.23"
bimap = "0.6.3"
egui_autocomplete = "5.0.0"
[profile.release]
lto = true