-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1.26 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[workspace]
resolver = "2"
members = [
"scopegraphs",
"scopegraphs-macros",
"scopegraphs-regular-expressions",
"scopegraphs-render-docs",
]
default-members = [
"scopegraphs",
"scopegraphs-macros",
"scopegraphs-regular-expressions",
"scopegraphs-render-docs",
]
[workspace.package]
version = "0.3.3"
authors = [
"Aron Zwaan <A.S.Zwaan@tudelft.nl>",
"Jonathan Dönszelmann <J.B.Doenszelmann@tudelft.nl>"
]
description = "A well-documented port of scopegraphs to Rust"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.75"
repository = "https://github.com/metaborg/rust-scopegraphs"
documentation = "https://docs.rs/scopegraphs"
[workspace.dependencies]
quote = "1"
syn = "2"
proc-macro2 = "1"
thiserror = "1"
# note this version should stay lower.
# Scopegraphs is a dev-dependency of scopegraphs-macros, and we deploy scopegraphs macros first.
# By that time, scopegraphs is not yet released at the right version.
scopegraphs = { path = "./scopegraphs", version = "0.3" }
scopegraphs-macros = { path = "./scopegraphs-macros", version = "0.3.3" }
scopegraphs-regular-expressions = { path = "./scopegraphs-regular-expressions", version = "0.3.3" }
scopegraphs-render-docs = { path = "./scopegraphs-render-docs", version = "0.3.3" }