quantrs2-symengine 0.1.0-rc.1

Symbolic Computation in Rust via SymEngine
[dependencies.quantrs2-symengine-sys]
version = "0.1.0-rc.1"

[dependencies.scirs2-core]
default-features = false
version = "0.1.0-rc.4"

[dependencies.serde]
features = ["derive", "derive"]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "2.0.17"

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.serde_test]
version = "1.0"

[[example]]
name = "basic_symbolic_math"
path = "examples/basic_symbolic_math.rs"

[[example]]
name = "batch_evaluation"
path = "examples/batch_evaluation.rs"

[[example]]
name = "hamiltonian_evolution"
path = "examples/hamiltonian_evolution.rs"

[[example]]
name = "numeric_solving"
path = "examples/numeric_solving.rs"

[[example]]
name = "polynomial_operations"
path = "examples/polynomial_operations.rs"

[[example]]
name = "quantum_gates"
path = "examples/quantum_gates.rs"

[[example]]
name = "quantum_states"
path = "examples/quantum_states.rs"

[[example]]
name = "quantum_symbolic_computation"
path = "examples/quantum_symbolic_computation.rs"

[[example]]
name = "symengine_scirs2_integration"
path = "examples/symengine_scirs2_integration.rs"

[[example]]
name = "vqe_gradient"
path = "examples/vqe_gradient.rs"

[features]
default = []
serde-serialize = ["serde", "quantrs2-symengine-sys/serde"]
static = ["quantrs2-symengine-sys/static"]
system-deps = ["quantrs2-symengine-sys/system-deps"]

[lib]
name = "quantrs2_symengine"
path = "src/lib.rs"

[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
dbg_macro = "warn"
doc_markdown = "allow"
enum_glob_use = "warn"
float_cmp = "allow"
items_after_statements = "allow"
many_single_char_names = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
ptr_eq = "allow"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
unwrap_used = "allow"
wildcard_imports = "allow"

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
ambiguous_glob_reexports = "allow"
dead_code = "allow"
deprecated = "allow"
elided_lifetimes_in_paths = "allow"
missing_debug_implementations = "allow"
missing_docs = "allow"
private_bounds = "allow"
private_interfaces = "allow"
unpredictable_function_pointer_comparisons = "allow"
unused_assignments = "allow"
unused_imports = "allow"
unused_mut = "allow"
unused_variables = "allow"

[lints.rust.nonstandard_style]
level = "warn"
priority = -1

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1

[package]
authors = ["QuantRS2 Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "science"]
description = "Symbolic Computation in Rust via SymEngine"
edition = "2021"
keywords = ["symbolic", "computation", "mathematics", "symengine"]
license = "MIT OR Apache-2.0"
name = "quantrs2-symengine"
readme = "README.md"
repository = "https://github.com/cool-japan/quantrs"
rust-version = "1.86.0"
version = "0.1.0-rc.1"

[[test]]
name = "quantum_workflows"
path = "tests/quantum_workflows.rs"