-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add badges to per-crate READMEs
- Loading branch information
Showing
3 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# rsjsonnet-front | ||
|
||
[![crates.io](https://img.shields.io/crates/v/rsjsonnet-front.svg)](https://crates.io/crates/rsjsonnet-front) | ||
[![Documentation](https://docs.rs/rsjsonnet-front/badge.svg)](https://docs.rs/rsjsonnet-front) | ||
![MSRV](https://img.shields.io/badge/rustc-1.74+-lightgray.svg) | ||
[![License](https://img.shields.io/crates/l/rsjsonnet-front.svg)](https://github.com/eduardosm/rsjsonnet#license) | ||
|
||
A Rust library that sits in the middle between rsjsonnet-lang and | ||
the outer world. Provides source loading and error printing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# rsjsonnet-lang | ||
|
||
[![crates.io](https://img.shields.io/crates/v/rsjsonnet-lang.svg)](https://crates.io/crates/rsjsonnet-lang) | ||
[![Documentation](https://docs.rs/rsjsonnet-lang/badge.svg)](https://docs.rs/rsjsonnet-lang) | ||
![MSRV](https://img.shields.io/badge/rustc-1.74+-lightgray.svg) | ||
[![License](https://img.shields.io/crates/l/rsjsonnet-lang.svg)](https://github.com/eduardosm/rsjsonnet#license) | ||
|
||
A Rust library to parse and evaluate [Jsonnet](https://jsonnet.org/) | ||
programs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# rsjsonnet | ||
|
||
[![crates.io](https://img.shields.io/crates/v/rsjsonnet.svg)](https://crates.io/crates/rsjsonnet) | ||
![MSRV](https://img.shields.io/badge/rustc-1.74+-lightgray.svg) | ||
[![License](https://img.shields.io/crates/l/rsjsonnet.svg)](https://github.com/eduardosm/rsjsonnet#license) | ||
|
||
A command line [Jsonnet](https://jsonnet.org/) interpreter implement in Rust. | ||
It offers an interface similar to the official implementation. |