-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 721 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
30
31
32
[package]
name = "mdsh"
version = "0.9.2"
authors = ["zimbatm <[email protected]>"]
edition = "2021"
description = "Markdown shell pre-processor"
homepage = "https://github.com/zimbatm/mdsh"
repository = "https://github.com/zimbatm/mdsh"
keywords = [
"markdown",
"shell",
]
readme = "README.md"
license = "MIT"
default-run = "mdsh"
[[bin]]
name = "gen-test-md"
path = "src/gen_test_md.rs"
[badges.travis-ci]
repository = "zimbatm/mdsh"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4", features = ["derive"] }
nom = { version = "8.0.0", default-features = false }
nom-language = "0.1.0"
shellexpand = { version = "3", default-features = false, features = ["base-0"] }
[dev-dependencies]
dedent = "0.1.1"