1
Fork 0
mirror of https://github.com/RGBCube/cstree synced 2025-07-27 17:17:45 +00:00

add badge to README and README to Cargo.toml

This commit is contained in:
Domenic Quirl 2021-01-30 20:53:38 +01:00
parent 621718e9b8
commit ec8f82ed7a
2 changed files with 11 additions and 1 deletions

View file

@ -6,6 +6,7 @@ authors = ["Domenic Quirl <DomenicQuirl@pm.me>", "Aleksey Kladov <aleksey.kladov
description = "Library for generic lossless syntax trees" description = "Library for generic lossless syntax trees"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/domenicquirl/cstree" repository = "https://github.com/domenicquirl/cstree"
readme = "README.md"
[dependencies] [dependencies]
lasso = "0.4.1" lasso = "0.4.1"

View file

@ -1,4 +1,13 @@
# `cstree` <div align=center
<h1><code>cstree</code></h1>
<p>
<strong>A library for generic lossless syntax trees
</p>
<p>
<a href="https://github.com/domenicquirl/cstree/actions?query=workflow%3ACI"> <img src="https://github.com/domenicquirl/cstree/workflows/CI/badge.svg" alt="build status" /></a>
</p>
</div>
`cstree` is a library for creating and working with concrete syntax trees (CSTs). `cstree` is a library for creating and working with concrete syntax trees (CSTs).
The concept of CSTs is inspired in part by Swift's [libsyntax](https://github.com/apple/swift/tree/5e2c815edfd758f9b1309ce07bfc01c4bc20ec23/lib/Syntax). The concept of CSTs is inspired in part by Swift's [libsyntax](https://github.com/apple/swift/tree/5e2c815edfd758f9b1309ce07bfc01c4bc20ec23/lib/Syntax).