5cfde22eb7
* Add pandoc support back to rust script * Dont render invalid HTML * Bump schema version * Enable debug build workflow * Dont wrap script * Provide pandoc in check phase * Update Elasticsearch hash * Add _forked_ rust-pandoc * Execute Lua filters * Update nixpkgs containing lua filters * Expose filter path in dev Shell * Dont check pandoc think (for now) * Provide filter path at build time * Enable debug builds * Enable debug builds * rename main.yaml to frontend.yaml * Wrap flake-info with pandoc * Add makeWrapper input * Add pandoc filter path to wrapper * Wrap descriptions in XML frame * Render HTML * Disable import on PR
33 lines
803 B
TOML
33 lines
803 B
TOML
[package]
|
|
name = "flake-info"
|
|
version = "0.3.0"
|
|
authors = ["Yannik Sander <me@ysndr.de>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "^2.33"
|
|
serde = {version="1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
toml = "0.5"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
structopt = "0.3"
|
|
command-run = "0.13"
|
|
env_logger = "0.8"
|
|
log = "0.4"
|
|
tempfile = "3"
|
|
lazy_static = "1.4"
|
|
fancy-regex = "0.6"
|
|
tokio = { version = "*", features = ["full"] }
|
|
reqwest = { version = "0.11", features = ["json", "blocking"] }
|
|
sha2 = "0.9"
|
|
pandoc = { git = "https://github.com/ysndr/rust-pandoc" }
|
|
|
|
elasticsearch = {git = "https://github.com/elastic/elasticsearch-rs", features = ["rustls-tls"]}
|
|
|
|
[lib]
|
|
name = "flake_info"
|
|
path = "./src/lib.rs"
|