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
31 changes: 31 additions & 0 deletions .config/supply-chain/audits.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

# cargo-vet audits file

[[audits.axum-core]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.5.6"

[[audits.cfb]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
Expand Down Expand Up @@ -71,6 +76,21 @@ who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.36.0+unofficial"

[[audits.matchit]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.8.4"

[[audits.maud]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.27.0"

[[audits.maud_macros]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.27.0"

[[audits.nix]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
Expand All @@ -97,6 +117,11 @@ who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.2.1"

[[audits.proc-macro2-diagnostics]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
version = "0.10.1"

[[audits.process-wrap]]
who = "Jean Mertz <git@jeanmertz.com>"
criteria = "safe-to-deploy"
Expand Down Expand Up @@ -311,6 +336,12 @@ user-id = 3618 # David Tolnay (dtolnay)
start = "2019-07-23"
end = "2027-02-13"

[[trusted.axum]]
criteria = "safe-to-deploy"
user-id = 6741 # Alice Ryhl (Darksonn)
start = "2026-04-14"
end = "2027-04-14"

[[trusted.backtrace]]
criteria = "safe-to-deploy"
user-id = 55123 # rust-lang-owner
Expand Down
7 changes: 7 additions & 0 deletions .config/supply-chain/imports.lock
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ user-id = 3618
user-login = "dtolnay"
user-name = "David Tolnay"

[[publisher.axum]]
version = "0.8.9"
when = "2026-04-14"
user-id = 6741
user-login = "Darksonn"
user-name = "Alice Ryhl"

[[publisher.backtrace]]
version = "0.3.75"
when = "2025-05-06"
Expand Down
105 changes: 105 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ assert_matches = { version = "1", default-features = false }
async-anthropic = { git = "https://github.com/JeanMertz/async-anthropic", default-features = false }
async-stream = { version = "0.3", default-features = false }
async-trait = { version = "0.1", default-features = false }
axum = { version = "0.8", default-features = false }
backon = { git = "https://github.com/JeanMertz/backon", default-features = false } # <https://github.com/JeanMertz/async-anthropic/blob/5edba470a3aa912de2c9e815bdd71dfc20fdf54f/Cargo.toml#L23-L31>
base64 = { version = "0.22", default-features = false }
camino = { version = "1", default-features = false }
Expand Down Expand Up @@ -80,6 +81,7 @@ inquire = { git = "https://github.com/JeanMertz/inquire", branch = "merged", def
insta = { version = "1", default-features = false }
libc = { version = "0.2", default-features = false }
linkme = { version = "0.3", default-features = false }
maud = { version = "0.27", default-features = false }
minijinja = { version = "2", default-features = false }
ollama-rs = { version = "0.3", default-features = false }
open-editor = { version = "1", default-features = false }
Expand Down
45 changes: 45 additions & 0 deletions crates/plugins/command/serve-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[package]
name = "jp-serve-web"

authors.workspace = true
description = "Read-only web UI for browsing JP conversations."
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
license-file.workspace = true
publish.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true

[dependencies]
jp_plugin = { workspace = true }

axum = { workspace = true, features = ["http1", "tokio"] }
chrono = { workspace = true }
comrak = { workspace = true }
maud = { workspace = true, features = ["axum"] }
serde_json = { workspace = true, features = ["std"] }
sha2 = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["ansi", "env-filter", "fmt", "std"] }

[dev-dependencies]
pretty_assertions = { workspace = true, features = ["std"] }
tracing = { workspace = true, features = ["std"] }

[lints]
workspace = true

[package.metadata.jp-registry]
id = "serve-web"
command = ["serve", "web"]
description = "Read-only web UI for browsing conversations"
official = true
requires = ["serve"]
repository = "https://github.com/dcdpr/jp"

[[bin]]
name = "jp-serve-web"
path = "src/main.rs"
Loading
Loading