Skip to content

Commit

Permalink
Merge pull request #120 from Berrysoft/dev/metadata
Browse files Browse the repository at this point in the history
Add metadata and update to 0.2.0
  • Loading branch information
Berrysoft committed Mar 18, 2023
2 parents 6c6752b + 8d84e2e commit fdc8453
Show file tree
Hide file tree
Showing 27 changed files with 306 additions and 145 deletions.
26 changes: 13 additions & 13 deletions bins/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 13 additions & 6 deletions bins/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
[workspace]
members = [
"ayaka-check",
"ayaka-gui/src-tauri",
"ayaka-latex",
]
members = ["ayaka-check", "ayaka-gui/src-tauri", "ayaka-latex"]

resolver = "2"

[workspace.package]
version = "0.2.0"
edition = "2021"
authors = ["Berrysoft <[email protected]>"]
categories = ["game-development"]
keywords = ["game", "engine", "galgame"]
license = "MIT"
repository = "https://github.com/Uni-Gal/Ayaka"

[profile.release]
lto = true
codegen-units = 1
Expand All @@ -17,4 +22,6 @@ ayaka-runtime = { path = "../utils/ayaka-runtime" }
ayaka-model = { path = "../utils/ayaka-model" }
tokio = { version = "1" }
clap = { version = "4" }
flexi_logger = { version = "0.25", default-features = false, features = ["colors"] }
flexi_logger = { version = "0.25", default-features = false, features = [
"colors",
] }
10 changes: 8 additions & 2 deletions bins/ayaka-check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
[package]
name = "ayaka-check"
version = "0.1.0"
edition = "2021"
description = "CLI frontend for Ayaka."
version.workspace = true
edition.workspace = true
authors.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
ayaka-runtime = { workspace = true }
Expand Down
14 changes: 10 additions & 4 deletions bins/ayaka-gui/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "ayaka-gui"
version = "0.1.0"
description = "GUI frontend for Ayaka."
# TODO: inherit from workspace
version = "0.2.0"
edition = "2021"

[build-dependencies]
Expand All @@ -16,10 +18,14 @@ serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2", features = ["cli", "window-all"] }
tauri-plugin-window-state = "0.1"
axum = { version = "0.6", default-features = false, features = ["http1", "tokio", "headers"] }
axum = { version = "0.6", default-features = false, features = [
"http1",
"tokio",
"headers",
] }
tower-http = { version = "0.4", features = ["cors", "trace"] }
mime_guess = "2.0"

[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]
10 changes: 8 additions & 2 deletions bins/ayaka-latex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
[package]
name = "ayaka-latex"
version = "0.1.0"
edition = "2021"
description = "LaTeX compiler for Ayaka."
version.workspace = true
edition.workspace = true
authors.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
ayaka-runtime = { workspace = true }
Expand Down
120 changes: 60 additions & 60 deletions plugins/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fdc8453

Please sign in to comment.