-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release 0.2.12 - 0.2.18 testing the docs.rs builder
- Loading branch information
1 parent
f08c53d
commit 076215d
Showing
5 changed files
with
65 additions
and
14 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
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
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,11 +1,11 @@ | ||
[package] | ||
name = "scopegraphs-render-docs" | ||
version = "0.2.0" | ||
version = "0.2.18" | ||
authors = ["Mike Lubinets <[email protected]>", "Frank Rehberger <[email protected]>", "Jonathan Dönszelmann <[email protected]>"] | ||
description = "Derived from Aquamarine, a mermaid.js integration for rustdoc, renders scopegraphs by executing doctests to generate mermaid" | ||
keywords = ["proc_macro", "docs", "rustdoc", "mermaid", "diagram"] | ||
categories = ["visualization", "development-tools::build-utils"] | ||
repository = "https://github.com/mersinvald/aquamarine" | ||
repository = "https://github.com/metaborg/rust-scopegraphs/" | ||
edition = "2018" | ||
license = "MIT" | ||
include = ["src/**/*", "Cargo.toml", "doc/js/**"] | ||
|
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
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,11 +1,11 @@ | ||
[package] | ||
name = "scopegraphs" | ||
version = "0.2.7" | ||
version = "0.2.18" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = [ | ||
"Aron Zwaan <[email protected]>", | ||
"Jonathan Dönszelmann <J.B.Doenszelmann@tudelft.nl>", | ||
"Jonathan Dönszelmann <jonathan@donsz.nl>", | ||
] | ||
description = "A port of scopegraphs https://pl.ewi.tudelft.nl/research/projects/scope-graphs/ to Rust" | ||
repository = "https://github.com/metaborg/rust-scopegraphs/" | ||
|
@@ -20,9 +20,9 @@ bumpalo = "3.14.0" | |
scopegraphs-prust-lib = { version = "0.1.0" } | ||
log = "0.4.20" | ||
|
||
scopegraphs-macros = { path = "../scopegraphs-macros", version = "0.2.0" } | ||
scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", version = "0.2.0" } | ||
scopegraphs-render-docs = { path = "../scopegraphs-render-docs", version = "0.2.0", optional = true } | ||
scopegraphs-macros = { path = "../scopegraphs-macros", version = "0.2" } | ||
scopegraphs-regular-expressions = { path = "../scopegraphs-regular-expressions", version = "0.2" } | ||
scopegraphs-render-docs = { path = "../scopegraphs-render-docs", version = "0.2", optional = true } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.10.1" | ||
|