tp-note 1.15.2

Minimalistic note taking: save and edit your clipboard content as a note file
[[bin]]
name = "tpnote"
path = "src/main.rs"
[build-dependencies.winres]
version = "0.1.12"
[dependencies.atty]
version = "0.2.14"

[dependencies.chrono]
version = "0.4.19"

[dependencies.clap]
version = "2.33.3"

[dependencies.clipboard]
optional = true
version = "0.5.0"

[dependencies.directories]
version = "4.0.1"

[dependencies.httparse]
optional = true
version = "1.5.1"

[dependencies.httpdate]
optional = true
version = "1.0.2"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.log]
features = ["serde"]
version = "0.4.14"

[dependencies.msgbox]
optional = true
version = "0.6.1"

[dependencies.notify]
optional = true
version = "4.0.17"

[dependencies.parse-hyperlinks]
version = "0.23.3"

[dependencies.parse-hyperlinks-extras]
version = "0.23.3"

[dependencies.percent-encoding]
optional = true
version = "2.1.0"

[dependencies.pulldown-cmark]
default-features = false
features = ["simd"]
optional = true
version = "0.8.0"

[dependencies.rst_parser]
optional = true
version = "0.4.0"

[dependencies.rst_renderer]
optional = true
version = "0.4.0"

[dependencies.sanitize-filename-reader-friendly]
version = "2.2.1"

[dependencies.self_cell]
version = "0.10.2"

[dependencies.semver]
version = "1.0.4"

[dependencies.serde]
features = ["derive"]
version = "1.0.130"

[dependencies.serde_json]
version = "1.0.72"

[dependencies.serde_yaml]
version = "0.8.21"

[dependencies.structopt]
version = "0.3.25"

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

[dependencies.thiserror]
version = "1.0.30"

[dependencies.toml]
version = "0.5.8"

[dependencies.url]
optional = true
version = "2.2.2"

[dependencies.webbrowser]
optional = true
version = "0.5.5"

[features]
default = ["read-clipboard", "message-box", "viewer", "renderer"]
message-box = ["msgbox"]
read-clipboard = ["clipboard"]
renderer = ["pulldown-cmark", "rst_parser", "rst_renderer"]
viewer = ["notify", "httparse", "webbrowser", "httpdate", "percent-encoding", "url"]

[package]
authors = ["Jens Getreu <getreu@web.de>"]
build = "build.rs"
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"
name = "tp-note"
readme = "README.md"
repository = "https://gitlab.com/getreu/tp-note"
resolver = "2"
version = "1.15.2"
[package.metadata.deb]
assets = [["docs/build/html/index.html", "usr/share/doc/tpnote/", "644"], ["docs/build/pdf/tpnote--manpage.pdf", "usr/share/doc/tpnote/", "644"], ["docs/build/pdf/tpnote--manual.pdf", "usr/share/doc/tpnote/", "644"], ["docs/build/man/man1/tpnote.1.gz", "usr/share/man/man1/", "644"], ["target/release/tpnote", "usr/bin/tpnote", "755"], ["assets/tpnote.svg", "usr/share/pixmaps/", "644"]]
copyright = "2015-2020, Jens Getreu <getreu@web.de>"
depends = "$auto"
extended-description = "_Tp-Note_ is a note taking tool and a template system, that synchronizes the\nnote's metadata with its filename. _Tp-Note_ collects various information\nabout its environment and the clipboard and stores it in variables. New\nnotes are created by filling these variables in predefined and customizable\n`Tera`-templates. In case `<path>` points to an existing _Tp-Note_-file, the\nnote's metadata is analysed and, if necessary, its filename is adjusted.\nFor all other file types, _Tp-Note_ creates a new note annotating the\nfile `<path>` points to. If `<path>` is a directory (or, when omitted the\ncurrent working directory), a new note is created in that directory. After\ncreation, _Tp-Note_ launches an external editor of your choice. Although the\ntemplates are written for Markdown, _Tp-Note_ is not tied to\nany specific markup language. However, _Tp-Note_ comes with an optional\nviewer feature, that currently renders only Markdown, ReStructuredText and\nHTML. Note, that there is also some limited support for Asciidoc and\nWikiText. The note's rendition with its hyperlinks is live updated and\ndisplayed in the user's webbrowser.\n"
maintainer = "Jens Getreu, <getreu@web.de>"
name = "tpnote"
[target."cfg(windows)".dependencies.win32job]
version = "1.0.1"