-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 719 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 719 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
# SPDX-License-Identifier: MPL-2.0
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
[workspace]
resolver = "2"
members = [
"crates/squabble-core",
"crates/squabble-fight",
"crates/squabble-cli",
"crates/squabble-app",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
authors = ["Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>"]
repository = "https://github.com/hyperpolymath/cicd-squabbler"
rust-version = "1.85"
[workspace.dependencies]
squabble-core = { path = "crates/squabble-core" }
squabble-fight = { path = "crates/squabble-fight" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"