mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-04 10:50:00 +00:00

This doesn't require a windowing system, just Linux and Vulkan drivers that supports the display extensions. It's called linuxkms as soon this will go beyond Vulkan and also support EGL and perhaps dumb buffers for software rendering.
27 lines
1.3 KiB
Bash
Executable file
27 lines
1.3 KiB
Bash
Executable file
#!/bin/bash -e
|
|
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
|
|
|
|
cargo publish --manifest-path internal/common/Cargo.toml
|
|
cargo publish --manifest-path internal/core-macros/Cargo.toml
|
|
sleep 15
|
|
cargo publish --manifest-path internal/compiler/Cargo.toml
|
|
cargo publish --manifest-path internal/core/Cargo.toml
|
|
sleep 15
|
|
cargo publish --manifest-path api/rs/macros/Cargo.toml
|
|
cargo publish --manifest-path internal/renderers/skia/Cargo.toml
|
|
cargo publish --manifest-path internal/renderers/femtovg/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/winit/Cargo.toml --features x11,renderer-femtovg
|
|
cargo publish --manifest-path api/rs/build/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/qt/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/linuxkms/Cargo.toml
|
|
sleep 30
|
|
cargo publish --manifest-path internal/backends/selector/Cargo.toml --features backend-winit-x11,renderer-femtovg
|
|
sleep 30
|
|
cargo publish --manifest-path internal/interpreter/Cargo.toml
|
|
cargo publish --manifest-path api/rs/slint/Cargo.toml
|
|
cargo publish --manifest-path tools/lsp/Cargo.toml
|
|
cargo publish --manifest-path tools/viewer/Cargo.toml
|
|
cargo publish --manifest-path tools/updater/Cargo.toml
|
|
cargo publish --manifest-path tools/tr-extractor/Cargo.toml
|
|
|