-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 724 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (20 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "codegen"
description = "A tool to generate Rust source code from tera templates"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1" }
argh = "0.1"
argh_derive = "0.1"
git2 = { version = "0.21", default-features = false }
globset = { version = "0.4", default-features = false }
rustfmt-wrapper = { version = "0.2" }
serde = { version = "1.0", default-features = false, features = ["std"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
tera = { version = "1", default-features = false }
[dev-dependencies]
insta = "1"
tempfile = "3"
assert_cmd = "2"