tp-note 1.5.6

fast note-taking with templates and filename synchronization
[package]
name = "tp-note"
version = "1.5.6"
authors = ["Jens Getreu <getreu@web.de>"]
edition = "2018"
readme = "README.md"
description = "fast note-taking with templates and filename synchronization"
license = "MIT/Apache-2.0"
categories = ["command-line-utilities", "template-engine", "text-processing"]
documentation = "https://blog.getreu.net/projects/tp-note/tp-note--manpage.html"
homepage = "https://blog.getreu.net/projects/tp-note/"
repository = "https://github.com/getreu/tp-note"
build =  "build.rs"

[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"


[package.metadata.deb]
maintainer = "Jens Getreu, <getreu@web.de>"
copyright = "2015-2020, Jens Getreu <getreu@web.de>"
depends = "$auto"
extended-description = '''
tp-note is a note-taking-tool and a template system, that consistently
synchronizes the note’s meta-data with its filename. tp-note collects various
information about its environment and the clipboard, and stores them in
variables. New notes are created by filling these variables in predefined and
customizable “Tera”-templates. In case the positional command-line-parameter
“<path>” points to an existing “tp-note”-file, the note’s meta-data is analysed
and, if necessary, its filename is modified. For all other file types, tp-note
creates a new note that annotates the file “<path>” points to. If “<path>” is a
directory (or, when omitted the current working directory), a new note is
created in that directory. After creation, tp-note launches an external editor
of your choice. Although the note’s structure follows “pandoc”-conventions, it
is not tied to any specific markup language.
'''
assets = [
    ["doc/build/html/index.html", "usr/share/doc/tp-note/", "644"],
    ["doc/build/pdf/tp-note--manpage.pdf", "usr/share/doc/tp-note/", "644"],
    ["doc/build/pdf/tp-note--manual.pdf", "usr/share/doc/tp-note/", "644"],
    ["doc/build/man/man1/tp-note.1.gz", "usr/share/man/man1/", "644"],
    ["target/release/tp-note", "usr/bin/tp-note", "755"],
    ["assets/tp-note.svg", "usr/share/pixmaps/", "644"]
]

[dependencies]
serde = { version = "1.0.115", features = ["derive"] }
serde_yaml = "0.8.13"
serde_json = "1.0.57"
anyhow = "1.0.32"
lazy_static = "1.4.0"
chrono = "0.4.15"
time = "0.2.16"
confy = "0.4.0"
clap = "2.33.3"
structopt = "0.3.16"
msgbox = "0.5.0"
directories = "3.0.1"
semver = "0.10.0"

# On Linux you need the x11 library, install it with something like:
#    sudo apt-get install xorg-dev
clipboard = "0.5.0"
sanitize-filename-reader-friendly = "0.9.2"

[dependencies.tera]
version = "1.5.0"
default-features = true