-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 850 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 850 Bytes
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
#:schema https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/cargo.json
# @help: https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
default-members = ["./crates/devpp/"]
members = [
"./crates/containerfile/",
"./crates/devpp/",
"./crates/devpp-core/",
"./crates/devpp-spec/",
"./crates/stable-topo-sort/",
]
resolver = "3"
[workspace.dependencies]
containerfile = { path = "./crates/containerfile/" }
devpp-core = { path = "./crates/devpp-core/" }
devpp-spec = { path = "./crates/devpp-spec/" }
stable-topo-sort = { path = "./crates/stable-topo-sort/" }
[workspace.package]
authors = ["fruzitent <fruzit@gmail.com>"]
description = "The Development Containers Preprocessor"
license-file = "license.md"
readme = "readme.md"
repository = "git+https://github.com/fruzitent/devpp.git"