-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (48 loc) · 1.3 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
52
53
54
55
56
57
[package]
name = "daily_ruster_man"
version = "0.5.4"
license = "MIT OR Apache-2.0"
rust-version = "1.68.0"
edition = "2021"
readme = "README.md"
keywords = ["cli", "journal"]
repository = "https://github.com/BoolPurist/daily_ruster_man"
authors = ["BoolPurist <https://github.com/BoolPurist>"]
description = """
Create/manage daily, monthly and yearly journals with your editor of choise.
"""
[dependencies]
date_validation_types = { git = "https://github.com/BoolPurist/date_validation_types.git", tag = "v1.0.0" }
# Own crates
# quality of life
anyhow = { version = "1.0.68", features = ["backtrace"] }
once_cell = "1.17.0"
# needed for other app features
chrono = { version = "0.4.26", default-features = false, features = [
"clock",
"std",
"alloc",
] }
clap = { version = "4.1.8", features = ["derive", "env"] }
# Used for parsing commands for placeholders in a template
shellwords = "1.1.0"
shellexpand = "3.0.0"
dirs = "5.0.0"
regex = "1.7.1"
# logging
env_logger = "0.10.0"
log = "0.4.17"
# data from files
serde = { version = "1.0.152", features = ["derive"] }
toml = "0.7.1"
# Macros
derive-new = "0.5.9"
thiserror = "1.0.38"
getset = "0.1.2"
parse-display = "0.8.0"
# testing
mockall = "0.11.3"
[dev-dependencies]
insta = { version = "1.26.0", features = ["yaml"] }
tempfile = "3.4.0"
test-case = "3.0.0"