mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-03-20 22:36:03 +02:00
23 lines
706 B
TOML
23 lines
706 B
TOML
|
[package]
|
||
|
name = "mdbook-slide-evaluator"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Michael Kerscher <kerscher@google.com>"]
|
||
|
edition = "2021"
|
||
|
license = "Apache-2.0"
|
||
|
repository = "https://github.com/google/comprehensive-rust"
|
||
|
description = "A tool for evaluating mdbook slides by rendering the html pages and spot violations to the policies"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.86"
|
||
|
clap = { version = "4.5.9", features = ["derive"] }
|
||
|
csv = "1.3.0"
|
||
|
fantoccini = "0.21.0"
|
||
|
glob = "0.3.1"
|
||
|
log = "0.4.22"
|
||
|
pretty_env_logger = "0.5.0"
|
||
|
serde = { version = "1.0.204", features = ["derive"] }
|
||
|
strum = { version = "0.26.3", features = ["derive"] }
|
||
|
tokio = { version = "1.38.1", features = ["full"] }
|
||
|
tokio-util = "0.7.11"
|
||
|
url = "2.5.2"
|