-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
107 lines (97 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[package]
authors = ["Wiserone Contributors <contact@wiserone.com>"]
build = "build.rs"
categories = ["development-tools", "command-line-utilities", "template-engine"]
description = "Daily nuggets of wisdom in a clean, minimalist design, inspiring deeper thought and personal growth with every visit."
documentation = "https://lib.rs/crates/wiserone"
edition = "2021"
exclude = [
"/.git/*",
"/.github/*",
"/.gitignore",
"/.vscode/*"
]
homepage = "https://wiserone.com"
keywords = ['Wisdom', 'Quotes','Inspiration', 'Insights', 'Reflection']
license = "MIT OR Apache-2.0"
name = "wiserone"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/wiserone"
rust-version = "1.75.0"
version = "0.0.5"
include = [
"/benches/**",
"/build.rs",
"/Cargo.toml",
"/CONTRIBUTING.md",
"/examples/**",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
"/tests/**"
]
[[bench]]
name = "benchmark"
harness = false
path = "benches/criterion.rs"
[profile.bench]
debug = true
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.16", features = ["env", "derive"] }
csv = "1.3.0"
dtt = "0.0.6"
env_logger = "0.11.5"
figlet-rs = "0.1.5"
openssl = { version = "0.10.66", features = ["vendored"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serde_yaml = "0.9.31"
toml = "0.8.19"
vrd = "0.0.5"
rlg = "0.0.2"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
[dev-dependencies]
criterion = "0.5.1"
mockall = "0.13.0"
[lib]
crate-type = ["lib"]
name = "wiserone"
path = "src/lib.rs"
[features]
default = []
[package.metadata.docs.rs]
all-features = true
[profile.dev]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = 'unwind'
rpath = false
strip = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = "s"
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"
[profile.test]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false
strip = false