-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 1.27 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
42
43
44
45
46
47
48
49
# Copyright © 2024 The µcad authors <info@ucad.xyz>
# SPDX-License-Identifier: AGPL-3.0-or-later
[workspace]
default-members = [
"core",
"export",
"lang",
"builtin",
"tests",
"builtin-proc-macro",
"tools/cli",
]
members = [
"core",
"export",
"lang",
"builtin",
"tests",
"builtin-proc-macro",
"tools/cli",
]
resolver = "2"
[workspace.package]
description = "µcad: A CAD system for the 21st century"
authors = [
"Michael Winkelmann (michael@winkelmann.site)",
"Patrick Hoffmann (p.hoffmann@berlin.de)",
]
version = "0.1.0"
edition = "2021"
homepage = "https://ucad.xyz"
repository = "https://github.com/rustfahrtagentur/microcad"
rust-version = "1.79"
license = "AGPL-3.0-or-later"
keywords = ["cad", "geometry", "3d", "printing", "cnc", "openscad"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
microcad-core = { path = "core", version = "0.1.0" }
microcad-export = { path = "export", version = "0.1.0" }
microcad-lang = { path = "lang", version = "0.1.0" }
microcad-builtin = { path = "builtin", version = "0.1.0" }
microcad-builtin-proc-macro = { path = "builtin-proc-macro", version = "0.1.0" }
microcad-cli = { path = "tools/cli", version = "0.1.0" }