[package]
edition = "2021"
name = "systemprompt-generator"
version = "0.0.12"
authors = ["Edward Burton"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static site generation for systemprompt.io"
homepage = "https://systemprompt.io"
readme = "README.md"
keywords = [
"ai",
"agents",
"mcp",
"llm",
"orchestration",
]
categories = [
"api-bindings",
"development-tools",
]
license = "BSL-1.0"
repository = "https://github.com/systempromptio/systemprompt-core"
[lib]
name = "systemprompt_generator"
path = "src/lib.rs"
[[test]]
name = "asset_tests"
path = "tests/asset_tests.rs"
[[test]]
name = "build_tests"
path = "tests/build_tests.rs"
[[test]]
name = "markdown_tests"
path = "tests/markdown_tests.rs"
[[test]]
name = "sitemap_tests"
path = "tests/sitemap_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.comrak]
version = "0.49"
default-features = false
[dependencies.handlebars]
version = "6"
[dependencies.hex]
version = "0.4"
[dependencies.image]
version = "0.25"
features = [
"png",
"jpeg",
"webp",
]
default-features = false
[dependencies.indicatif]
version = "0.18"
[dependencies.inventory]
version = "0.3"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.quick-xml]
version = "0.31"
features = ["serialize"]
[dependencies.rand]
version = "0.9"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.systemprompt-cloud]
version = "0.0.12"
[dependencies.systemprompt-config]
version = "0.0.12"
[dependencies.systemprompt-content]
version = "0.0.12"
[dependencies.systemprompt-database]
version = "0.0.12"
[dependencies.systemprompt-extension]
version = "0.0.12"
[dependencies.systemprompt-files]
version = "0.0.12"
[dependencies.systemprompt-identifiers]
version = "0.0.12"
[dependencies.systemprompt-logging]
version = "0.0.12"
[dependencies.systemprompt-models]
version = "0.0.12"
[dependencies.systemprompt-provider-contracts]
version = "0.0.12"
[dependencies.systemprompt-template-provider]
version = "0.0.12"
[dependencies.systemprompt-templates]
version = "0.0.12"
[dependencies.systemprompt-traits]
version = "0.0.12"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.47"
features = [
"rt-multi-thread",
"net",
"io-util",
"time",
"sync",
"macros",
"fs",
"process",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dependencies.uuid]
version = "1.18"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.0"
[lints.clippy]
cargo_common_metadata = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
clone_on_ref_ptr = "warn"
cognitive_complexity = "deny"
dbg_macro = "deny"
derive_partial_eq_without_eq = "allow"
empty_structs_with_brackets = "warn"
exit = "deny"
expect_used = "warn"
format_push_string = "allow"
if_not_else = "warn"
implicit_clone = "warn"
inefficient_to_string = "warn"
items_after_statements = "warn"
large_futures = "warn"
manual_let_else = "warn"
match_bool = "warn"
match_wild_err_arm = "warn"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "warn"
option_if_let_else = "warn"
or_fun_call = "warn"
panic = "deny"
print_stderr = "warn"
print_stdout = "warn"
rc_mutex = "deny"
redundant_clone = "warn"
redundant_else = "warn"
rest_pat_in_fully_bound_structs = "warn"
result_unit_err = "allow"
return_self_not_must_use = "allow"
semicolon_if_nothing_returned = "warn"
separated_literal_suffix = "warn"
todo = "deny"
too_many_arguments = "deny"
too_many_lines = "warn"
trivially_copy_pass_by_ref = "allow"
try_err = "warn"
type_complexity = "warn"
unimplemented = "deny"
uninlined_format_args = "allow"
unnecessary_to_owned = "warn"
unnecessary_wraps = "warn"
unused_async = "warn"
unwrap_or_default = "allow"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unused_import_braces = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"