[[bench]]
harness = false
name = "query_bench"
path = "benches/query_bench.rs"
[dependencies.ariadne]
version = "0.4"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.chumsky]
version = "1.0.0-alpha.7"
[dependencies.regex]
version = "1"
[dependencies.rust_decimal]
features = ["serde"]
version = "1.39"
[dependencies.rustledger-core]
version = "0.3.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.insta]
features = ["yaml"]
version = "1"
[dev-dependencies.rust_decimal_macros]
version = "1.39"
[lib]
bench = false
name = "rustledger_query"
path = "src/lib.rs"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
default_trait_access = "allow"
format_push_string = "allow"
manual_let_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
ptr_arg = "allow"
ref_option = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
type_complexity = "allow"
unnecessary_wraps = "allow"
unused_self = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[package]
authors = ["Rustledger Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "finance", "parser-implementations"]
description = "Beancount query engine (BQL) with SQL-like syntax for ledger queries"
edition = "2021"
homepage = "https://rustledger.github.io"
keywords = ["beancount", "accounting", "finance", "double-entry", "ledger"]
license = "GPL-3.0-only"
name = "rustledger-query"
readme = "README.md"
repository = "https://github.com/rustledger/rustledger"
rust-version = "1.75"
version = "0.3.0"
[[test]]
name = "bql_integration_test"
path = "tests/bql_integration_test.rs"