[package]
edition = "2024"
name = "jito-bundle"
version = "0.1.0"
authors = ["ohaddahan@gmail.com"]
build = false
exclude = [
".claude/*",
".github/*",
"scripts/*",
".env*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for Jito bundle"
documentation = "https://docs.rs/jito-bundle"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ohaddahan/jito-bundle.git"
[lib]
name = "jito_bundle"
path = "src/lib.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.base64]
version = "0.22"
[dependencies.bincode]
version = "1.3"
[dependencies.bs58]
version = "0.5"
[dependencies.rand]
version = "0.9"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.solana-client]
version = "2.3.3"
[dependencies.solana-compute-budget-interface]
version = "2.2.2"
[dependencies.solana-instruction]
version = "2.3.0"
[dependencies.solana-pubkey]
version = "2.4.0"
[dependencies.solana-sdk]
version = "2.3.1"
[dependencies.solana-transaction-status-client-types]
version = "2.3.13"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["time"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[lints.clippy]
allow_attributes = "deny"
case_sensitive_file_extension_comparisons = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
dbg_macro = "deny"
default_trait_access = "allow"
doc_markdown = "allow"
expect_used = "deny"
fn_params_excessive_bools = "allow"
format_push_string = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
no_effect_underscore_binding = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
redundant_closure_for_method_calls = "allow"
ref_option = "allow"
ref_option_ref = "allow"
result_large_err = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
todo = "deny"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
unimplemented = "deny"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unused_async = "allow"
unwrap_used = "deny"
used_underscore_binding = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1