forked from hamrt/credential-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (32 loc) · 1005 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
28
29
30
31
32
33
[package]
name = "credential-converter"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4", features = ["derive"] }
jsonschema = "0.17"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["serde_derive", "derive"] }
serde_json = "1"
anyhow = "1.0"
crossterm = "0.27.0"
ratatui = { version = "0.26", features = ["all-widgets"]}
num-traits = "0.2.19"
num-derive = "0.4.2"
tracing-error = "0.2.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
directories = "5.0.1"
lazy_static = "1.4.0"
color-eyre = "0.6.3"
regex = "1.10"
rust-i18n = "3.0"
config = "0.14"
serde_path_to_error = "0.1"
jsonpath-rust = "0.5"
strum = "0.26.2"
digital-credential-data-models = { git = "https://github.com/impierce/digital-credential-data-models.git", rev = "9f16c27" }
csv = "1.3.0"
axum = { version = "0.7.7", features = ["macros", "multipart"] }
eyre = "0.6.8"
tower-http = { version = "0.6.1", features = ["limit", "trace"] }