-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 914 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 914 Bytes
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
[package]
name = "present"
version = "0.2.3"
description = "Interpolate the standard output of arbitrary shell scripts into your markdown files"
authors = ["Liam <[email protected]>"]
license = "CC0-1.0"
homepage = "https://github.com/terror/present"
repository = "https://github.com/terror/present"
edition = "2021"
categories = ["command-line-utilities"]
keywords = ["command-line", "productivity", "utility", "markdown", "bash"]
resolver = "2"
[dependencies]
clap = { version = "4.5.51", features = ["derive"] }
console = "0.16.1"
pulldown-cmark = { version = "0.13.0", default-features = false, features = ["simd"] }
ropey = "1.6.1"
similar = "2.7.0"
snafu = { version = "0.8.9", default-features = false, features = ["std"] }
termimad = "0.34.0"
unicode-segmentation = "1.12.0"
walkdir = "2.5.0"
[dev-dependencies]
executable-path = "1.0.0"
pretty_assertions = "1.4.1"
tempdir = "0.3.7"
unindent = "0.2.4"