-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (38 loc) · 1.04 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "mdmodels"
authors = ["Jan Range <jan.range@simtech.uni-stuttgart.de>"]
description = "A tool to generate models, code and schemas from markdown files"
version = "0.1.3"
edition = "2021"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
serde = { version = "1.0.198", features = ["derive"] }
pulldown-cmark = "0.8.0"
serde_json = { "version" = "1.0.116", features = ["preserve_order"] }
regex = "1.10.4"
serde_with = "3.8.0"
minijinja = "2.0.1"
minijinja-embed = "2.0.1"
clap = { version = "4.5.4", features = ["derive"] }
lazy_static = "1.4.0"
gray_matter = "0.2.7"
reqwest = { version = "0.12.4", features = ["blocking"] }
log = "0.4.21"
pretty_env_logger = "0.5.0"
colored = "2.1.0"
convert_case = "0.6.0"
toml = "0.8.14"
textwrap = "0.16.1"
pyo3 = { version = "0.22.5", features = ["extension-module"], optional = true }
[features]
python = ["pyo3"]
[build-dependencies]
minijinja-embed = "2.0.1"
[[bin]]
name = "md-models"
path = "src/bin/cli.rs"
[dev-dependencies]
assert_cmd = "2.0.14"
pretty_assertions = "1.4.0"