Compare commits

..

No commits in common. "f21893b52e99246ec10fd2681863a34a09ee7344" and "9790bbea836de4ac9eed0546648f42da6ab6a966" have entirely different histories.

6 changed files with 62 additions and 18 deletions

68
Cargo.lock generated
View File

@ -561,6 +561,17 @@ dependencies = [
"byte-tools",
]
[[package]]
name = "build-info"
version = "0.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3465eaabbf2f3bf2a28a4ee66d16316071ef63c1ab9f336e833ea67f519c0348"
dependencies = [
"bincode",
"build-info-common 0.0.38",
"build-info-proc 0.0.38",
]
[[package]]
name = "build-info"
version = "0.0.39"
@ -568,8 +579,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24c8169feaff1e5d9686706c0a56a54ed0422d2df41fa1c543e53f7cea0e70d4"
dependencies = [
"bincode",
"build-info-common",
"build-info-proc",
"build-info-common 0.0.39",
"build-info-proc 0.0.39",
]
[[package]]
@ -581,7 +592,7 @@ dependencies = [
"anyhow",
"base64 0.22.1",
"bincode",
"build-info-common",
"build-info-common 0.0.39",
"cargo_metadata",
"chrono",
"git2",
@ -592,6 +603,18 @@ dependencies = [
"zstd",
]
[[package]]
name = "build-info-common"
version = "0.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c88e36f2531db6136c2d42810698ced69af85872f4559c7b6dccb8e7c30485d2"
dependencies = [
"chrono",
"derive_more 1.0.0",
"semver 1.0.24",
"serde",
]
[[package]]
name = "build-info-common"
version = "0.0.39"
@ -604,6 +627,27 @@ dependencies = [
"serde",
]
[[package]]
name = "build-info-proc"
version = "0.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58463d44fa27e9afbf377c0f5661eaf8d3b69b1a4a45b0fa601b822ccf7512e8"
dependencies = [
"anyhow",
"base64 0.22.1",
"bincode",
"build-info-common 0.0.38",
"chrono",
"num-bigint",
"num-traits",
"proc-macro-error",
"proc-macro2",
"quote",
"serde_json",
"syn 2.0.90",
"zstd",
]
[[package]]
name = "build-info-proc"
version = "0.0.39"
@ -613,7 +657,7 @@ dependencies = [
"anyhow",
"base64 0.22.1",
"bincode",
"build-info-common",
"build-info-common 0.0.39",
"chrono",
"num-bigint",
"num-traits",
@ -2910,9 +2954,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "letterbox"
version = "0.0.138"
version = "0.0.137"
dependencies = [
"build-info",
"build-info 0.0.38",
"build-info-build",
"chrono",
"console_error_panic_hook",
@ -2936,14 +2980,14 @@ dependencies = [
[[package]]
name = "letterbox-server"
version = "0.0.138"
version = "0.0.137"
dependencies = [
"ammonia",
"anyhow",
"async-graphql",
"async-graphql-rocket",
"async-trait",
"build-info",
"build-info 0.0.39",
"build-info-build",
"cacher",
"chrono",
@ -3457,7 +3501,7 @@ dependencies = [
[[package]]
name = "notmuch"
version = "0.0.138"
version = "0.0.137"
dependencies = [
"itertools 0.10.5",
"log",
@ -4274,7 +4318,7 @@ dependencies = [
[[package]]
name = "procmail2notmuch"
version = "0.0.138"
version = "0.0.137"
dependencies = [
"anyhow",
]
@ -5354,9 +5398,9 @@ dependencies = [
[[package]]
name = "shared"
version = "0.0.138"
version = "0.0.137"
dependencies = [
"build-info",
"build-info 0.0.39",
"notmuch",
"serde",
]

View File

@ -1,6 +1,6 @@
[package]
name = "notmuch"
version = "0.0.138"
version = "0.0.137"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package]
name = "procmail2notmuch"
version = "0.0.138"
version = "0.0.137"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package]
name = "letterbox-server"
version = "0.0.138"
version = "0.0.137"
edition = "2021"
default-run = "letterbox-server"

View File

@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.0.138"
version = "0.0.137"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,5 +1,5 @@
[package]
version = "0.0.138"
version = "0.0.137"
name = "letterbox"
repository = "https://github.com/seed-rs/seed-quickstart"
authors = ["Bill Thiede <git@xinu.tv>"]
@ -32,7 +32,7 @@ thiserror = "1.0.50"
seed_hooks = { git = "https://github.com/wathiede/styles_hooks", package = "seed_hooks", branch = "main" }
gloo-net = { version = "0.4.0", features = ["json", "serde_json"] }
human_format = "1.1.0"
build-info = "0.0.39"
build-info = "0.0.38"
wasm-bindgen = "0.2.95"
[package.metadata.wasm-pack.profile.release]