-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (28 loc) · 994 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
31
# [PROJECT_DIR]/Cargo.toml
[workspace]
resolver = "2"
members = ["tpnote", "tpnote-lib"]
default-members = ["tpnote"]
[workspace.package]
authors = ["Jens Getreu <[email protected]>"]
categories = ["command-line-utilities", "template-engine", "text-processing"]
description = "Minimalistic note-taking: save and edit your clipboard content as a note file"
documentation = "https://blog.getreu.net/projects/tp-note/tpnote--manual.html"
edition = "2021"
homepage = "https://blog.getreu.net/projects/tp-note/"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://gitlab.com/getreu/tp-note"
rust-version = "1.80.1"
version = "1.24.11"
[profile.release]
strip = "symbols"
[workspace.dependencies]
log = { version = "0.4.22", features = ["serde"] }
parking_lot = "0.12.3"
sanitize-filename-reader-friendly = "2.2.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_yaml = "0.9.34"
tera = { version = "1.20.0", default-features = true }
thiserror = "2.0.5"
toml = "0.8.19"