Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/tisonkun/morax/"
version = "0.1.0"
version = "0.1.0-prerelease.2"

[workspace.dependencies]
backon = { version = "1.0", features = ["tokio-sleep"] }
Expand Down Expand Up @@ -90,17 +90,17 @@ uuid = { version = "1.8", features = ["v4"] }

# workspace dependencies
kafka-api = { version = "0.4.1", path = "api/kafka-api" }
morax-kafka-broker = { version = "0.1.0", path = "crates/kafka-broker" }
morax-meta = { version = "0.1.0", path = "crates/meta" }
morax-protos = { version = "0.1.0", path = "api/protos" }
morax-runtime = { version = "0.1.0", path = "crates/runtime" }
morax-server = { version = "0.1.0", path = "crates/server" }
morax-storage = { version = "0.1.0", path = "crates/storage" }
morax-telemetry = { version = "0.1.0", path = "crates/telemetry" }
morax-version = { version = "0.1.0", path = "crates/version" }
morax-wal-broker = { version = "0.1.0", path = "crates/wal-broker" }
morax-wal-client = { version = "0.1.0", path = "api/wal-client" }
tests-toolkit = { version = "0.1.0", path = "tests/toolkit" }
morax-kafka-broker = { version = "0.1.0-prerelease.2", path = "crates/kafka-broker" }
morax-meta = { version = "0.1.0-prerelease.2", path = "crates/meta" }
morax-protos = { version = "0.1.0-prerelease.2", path = "api/protos" }
morax-runtime = { version = "0.1.0-prerelease.2", path = "crates/runtime" }
morax-server = { version = "0.1.0-prerelease.2", path = "crates/server" }
morax-storage = { version = "0.1.0-prerelease.2", path = "crates/storage" }
morax-telemetry = { version = "0.1.0-prerelease.2", path = "crates/telemetry" }
morax-version = { version = "0.1.0-prerelease.2", path = "crates/version" }
morax-wal-broker = { version = "0.1.0-prerelease.2", path = "crates/wal-broker" }
morax-wal-client = { version = "0.1.0-prerelease.2", path = "api/wal-client" }
tests-toolkit = { version = "0.1.0-prerelease.2", path = "tests/toolkit" }

[workspace.lints.rust]
unknown_lints = "deny"
Expand Down
3 changes: 3 additions & 0 deletions cmd/morax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ toml = { workspace = true }

[lints]
workspace = true

[package.metadata.dist]
dist = true
28 changes: 9 additions & 19 deletions dist-workspace.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,20 @@
# Copyright 2024 tison <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Config for 'cargo dist'
[dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# The installers to generate for each app
installers = ["shell"]
# Which actions to run on pull requests
pr-run-mode = "upload"
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]

[workspace]
members = ["cargo:cmd/morax"]
Loading