-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 1.09 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
[workspace]
resolver = "2"
members = [
# Bindings and wrappers
"playdate-rs",
"playdate-rs/macros",
"playdate-rs-sys",
# CLI Tools
"playdate-cli",
# Example playdate-rs project
"examples/hello-world",
]
[workspace.package]
# This is the version for playdate-rs, playdate-rs-macros, and example packages.
# playdate-rs-sys and playdate-cli have separate versions specified in their own Cargo.toml.
version = "0.0.15"
edition = "2021"
authors = ["Wenyu Zhao <wenyu.zhao@anu.edu.au>"]
license = "MIT OR Apache-2.0"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
# Put internal dependencies here, to make verison bumping easier when making a new release.
[workspace.dependencies]
playdate-rs-sys = { version = "0.0.12", path = "./playdate-rs-sys" }
playdate-rs-macros = { version = "0.0.15", path = "./playdate-rs/macros" }
# Notes on versioning:
# - playdate-rs-sys and playdate-cli have their own version numbers, which are
# independent of the version number of playdate-rs.
# - playdate-rs and playdate-rs-macros should always have the same version number.