chore: publish l10n, shared, and core
This commit is contained in:
parent
7d30d65a3b
commit
35b66c94d0
6 changed files with 24 additions and 7 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -2885,9 +2885,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "serde_json"
|
||||
version = "1.0.140"
|
||||
version = "1.0.141"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
||||
checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
|
||||
dependencies = [
|
||||
"itoa",
|
||||
"memchr",
|
||||
|
|
|
@ -29,7 +29,7 @@ tetratto-l10n = { path = "../l10n" }
|
|||
image = "0.25.6"
|
||||
reqwest = { version = "0.12.22", features = ["json", "stream"] }
|
||||
regex = "1.11.1"
|
||||
serde_json = "1.0.140"
|
||||
serde_json = "1.0.141"
|
||||
mime_guess = "2.0.5"
|
||||
cf-turnstile = "0.2.0"
|
||||
contrasted = "0.1.3"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "tetratto-core"
|
||||
description = "The core behind Tetratto"
|
||||
version = "11.0.0"
|
||||
edition = "2024"
|
||||
authors.workspace = true
|
||||
|
@ -17,9 +18,9 @@ default = ["database", "types", "sdk"]
|
|||
pathbufd = "0.1.4"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
toml = "0.9.2"
|
||||
tetratto-shared = { path = "../shared" }
|
||||
tetratto-l10n = { path = "../l10n" }
|
||||
serde_json = "1.0.140"
|
||||
tetratto-shared = { version = "11.0.0", path = "../shared" }
|
||||
tetratto-l10n = { version = "11.0.0", path = "../l10n" }
|
||||
serde_json = "1.0.141"
|
||||
totp-rs = { version = "5.7.0", features = ["qr", "gen_secret"], optional = true }
|
||||
reqwest = { version = "0.12.22", features = ["json", "multipart"], optional = true }
|
||||
bitflags = { version = "2.9.1", optional = true }
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "tetratto-l10n"
|
||||
description = "Localization for Tetratto"
|
||||
version = "11.0.0"
|
||||
edition = "2024"
|
||||
authors.workspace = true
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[package]
|
||||
name = "tetratto-shared"
|
||||
description = "Shared stuff for Tetratto"
|
||||
version = "11.0.0"
|
||||
edition = "2024"
|
||||
authors.workspace = true
|
||||
|
@ -12,7 +13,7 @@ chrono = "0.4.41"
|
|||
markdown = "1.0.0"
|
||||
hex_fmt = "0.3.0"
|
||||
rand = "0.9.1"
|
||||
serde = "1.0.219"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
sha2 = "0.10.9"
|
||||
snowflaked = "1.0.3"
|
||||
uuid = { version = "1.17.0", features = ["v4"] }
|
||||
|
|
14
justfile
14
justfile
|
@ -12,3 +12,17 @@ doc:
|
|||
test:
|
||||
cd example && LITTLEWEB=true PORT=4119 cargo run &
|
||||
cd example && cargo run
|
||||
|
||||
publish-shared:
|
||||
cargo publish --allow-dirty --package tetratto-shared
|
||||
|
||||
publish-l10n:
|
||||
cargo publish --allow-dirty --package tetratto-l10n
|
||||
|
||||
publish-core:
|
||||
cargo publish --allow-dirty --package tetratto-core
|
||||
|
||||
publish:
|
||||
just publish-shared
|
||||
just publish-l10n
|
||||
just publish-core
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue