-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (31 loc) · 940 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
34
35
36
37
[package]
name = "beacon-verifier"
version = "0.3.3"
authors = ["Mr.Robb <roberto.ariosa@crg.eu>"]
edition = "2021"
license = "Apache-2.0"
description = "Compliance tool to verify beacon implementations."
repository = "https://github.com/ga4gh-beacon/beacon-verifier"
keywords = ["genetics", "http", "api", "jsonschema", "validation"]
categories = ["development-tools::testing"]
readme = "README.md"
rust-version = "1.56"
[dependencies]
# Config
clap = { version = "4.0", features = ["derive"] }
# Filesystem
walkdir = "2.3.2"
tempfile = "3.2.0"
git2 = "0.15"
# Validation
jsonschema = { version = "0.16", features = ["reqwest"] }
url = { version = "2.3", features = ["serde"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
# Output
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
# Log
log = "0.4"
pretty_env_logger = "0.4"
thiserror = "1.0"