-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 830 Bytes
/
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
[package]
name = "ntro"
version = "0.3.4"
edition = "2021"
description = "Introspect configuration files and generate typescript type declarations or other useful typescript code."
homepage = "https://github.com/Gnarus-G/ntro"
repository = "https://github.com/Gnarus-G/ntro"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.11", features = ["derive"] }
clap_complete = "4.3.2"
colored = "2.0.4"
log = "0.4.19"
notify = "6.0.1"
serde = { version = "1.0.167", features = ["derive"] }
serde_json = { version = "1.0.103", features = ["preserve_order"] }
serde_yaml = "0.9.22"
simple_logger = { version = "4.2.0", features = ["stderr"] }
thiserror = "1.0.44"
which = "4.4.0"
[dev-dependencies]
insta = "1.30.0"