-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 848 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
27
28
29
30
31
32
33
# See: https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["lib/*", "parser_test_suite"]
default-members = ["lib/*"]
resolver = "2"
[workspace.package]
version = "0.2.3"
authors = ["Arto Bendiken"]
edition = "2021"
rust-version = "1.70"
description = "SysML.rs"
#documentation = ""
readme = true
homepage = "https://sysml.rs"
repository = "https://github.com/artob/sysml.rs"
license = "Unlicense"
keywords = ["sysml", "kerml", "mbse"]
categories = ["no-std"]
publish = true
[workspace.dependencies]
kerml = { path = "lib/kerml" }
sysml = { path = "lib/sysml" }
sysml-model = { path = "lib/sysml-model" }
sysml-parser = { path = "lib/sysml-parser" }
[patch.crates-io]
kerml = { path = "lib/kerml" }
sysml = { path = "lib/sysml" }
sysml-model = { path = "lib/sysml-model" }
sysml-parser = { path = "lib/sysml-parser" }