Skip to content

Commit fdc8453

Browse files
authored
Merge pull request #120 from Berrysoft/dev/metadata
Add metadata and update to 0.2.0
2 parents 6c6752b + 8d84e2e commit fdc8453

File tree

27 files changed

+306
-145
lines changed

27 files changed

+306
-145
lines changed

bins/Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bins/Cargo.toml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
[workspace]
2-
members = [
3-
"ayaka-check",
4-
"ayaka-gui/src-tauri",
5-
"ayaka-latex",
6-
]
2+
members = ["ayaka-check", "ayaka-gui/src-tauri", "ayaka-latex"]
73

84
resolver = "2"
95

6+
[workspace.package]
7+
version = "0.2.0"
8+
edition = "2021"
9+
authors = ["Berrysoft <Strawberry_Str@hotmail.com>"]
10+
categories = ["game-development"]
11+
keywords = ["game", "engine", "galgame"]
12+
license = "MIT"
13+
repository = "https://github.com/Uni-Gal/Ayaka"
14+
1015
[profile.release]
1116
lto = true
1217
codegen-units = 1
@@ -17,4 +22,6 @@ ayaka-runtime = { path = "../utils/ayaka-runtime" }
1722
ayaka-model = { path = "../utils/ayaka-model" }
1823
tokio = { version = "1" }
1924
clap = { version = "4" }
20-
flexi_logger = { version = "0.25", default-features = false, features = ["colors"] }
25+
flexi_logger = { version = "0.25", default-features = false, features = [
26+
"colors",
27+
] }

bins/ayaka-check/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "ayaka-check"
3-
version = "0.1.0"
4-
edition = "2021"
3+
description = "CLI frontend for Ayaka."
4+
version.workspace = true
5+
edition.workspace = true
6+
authors.workspace = true
7+
categories.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
10+
repository.workspace = true
511

612
[dependencies]
713
ayaka-runtime = { workspace = true }

bins/ayaka-gui/src-tauri/Cargo.toml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[package]
22
name = "ayaka-gui"
3-
version = "0.1.0"
3+
description = "GUI frontend for Ayaka."
4+
# TODO: inherit from workspace
5+
version = "0.2.0"
46
edition = "2021"
57

68
[build-dependencies]
@@ -16,10 +18,14 @@ serde_json = "1.0"
1618
serde = { version = "1.0", features = ["derive"] }
1719
tauri = { version = "1.2", features = ["cli", "window-all"] }
1820
tauri-plugin-window-state = "0.1"
19-
axum = { version = "0.6", default-features = false, features = ["http1", "tokio", "headers"] }
21+
axum = { version = "0.6", default-features = false, features = [
22+
"http1",
23+
"tokio",
24+
"headers",
25+
] }
2026
tower-http = { version = "0.4", features = ["cors", "trace"] }
2127
mime_guess = "2.0"
2228

2329
[features]
24-
default = [ "custom-protocol" ]
25-
custom-protocol = [ "tauri/custom-protocol" ]
30+
default = ["custom-protocol"]
31+
custom-protocol = ["tauri/custom-protocol"]

bins/ayaka-latex/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "ayaka-latex"
3-
version = "0.1.0"
4-
edition = "2021"
3+
description = "LaTeX compiler for Ayaka."
4+
version.workspace = true
5+
edition.workspace = true
6+
authors.workspace = true
7+
categories.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
10+
repository.workspace = true
511

612
[dependencies]
713
ayaka-runtime = { workspace = true }

plugins/Cargo.lock

Lines changed: 60 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)