tensorlogic-adapters 0.1.0-beta.1

Symbol tables, axis metadata, and domain masks for TensorLogic
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "tensorlogic-adapters"
version = "0.1.0-beta.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Symbol tables, axis metadata, and domain masks for TensorLogic"
homepage = "https://github.com/cool-japan/tensorlogic"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/cool-japan/tensorlogic"

[features]
all-databases = [
    "sqlite",
    "postgres",
]
default = []
postgres = [
    "dep:tokio-postgres",
    "dep:tokio",
    "dep:async-trait",
]
sqlite = ["dep:rusqlite"]

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

[[bin]]
name = "schema_migrate"
path = "src/bin/schema_migrate.rs"

[[bin]]
name = "schema_validate"
path = "src/bin/schema_validate.rs"

[[example]]
name = "01_symbol_table_basics"
path = "examples/01_symbol_table_basics.rs"

[[example]]
name = "02_domain_hierarchy"
path = "examples/02_domain_hierarchy.rs"

[[example]]
name = "03_parametric_types"
path = "examples/03_parametric_types.rs"

[[example]]
name = "04_predicate_composition"
path = "examples/04_predicate_composition.rs"

[[example]]
name = "05_metadata_provenance"
path = "examples/05_metadata_provenance.rs"

[[example]]
name = "06_signature_matching"
path = "examples/06_signature_matching.rs"

[[example]]
name = "07_schema_analysis"
path = "examples/07_schema_analysis.rs"

[[example]]
name = "08_schema_builder"
path = "examples/08_schema_builder.rs"

[[example]]
name = "09_product_domains"
path = "examples/09_product_domains.rs"

[[example]]
name = "10_computed_domains"
path = "examples/10_computed_domains.rs"

[[example]]
name = "11_lazy_loading"
path = "examples/11_lazy_loading.rs"

[[example]]
name = "12_comprehensive_integration"
path = "examples/12_comprehensive_integration.rs"

[[example]]
name = "13_advanced_integration"
path = "examples/13_advanced_integration.rs"

[[example]]
name = "14_advanced_type_system"
path = "examples/14_advanced_type_system.rs"

[[example]]
name = "15_compiler_integration"
path = "examples/15_compiler_integration.rs"

[[example]]
name = "16_graphql_codegen"
path = "examples/16_graphql_codegen.rs"

[[example]]
name = "17_code_generation_suite"
path = "examples/17_code_generation_suite.rs"

[[example]]
name = "18_embeddings_similarity"
path = "examples/18_embeddings_similarity.rs"

[[example]]
name = "19_autocompletion_demo"
path = "examples/19_autocompletion_demo.rs"

[[example]]
name = "20_database_backends"
path = "examples/20_database_backends.rs"

[[example]]
name = "21_schema_learning"
path = "examples/21_schema_learning.rs"

[[example]]
name = "22_schema_recommendations"
path = "examples/22_schema_recommendations.rs"

[[example]]
name = "23_concurrent_schema_access"
path = "examples/23_concurrent_schema_access.rs"

[[example]]
name = "24_distributed_synchronization"
path = "examples/24_distributed_synchronization.rs"

[[example]]
name = "25_query_caching"
path = "examples/25_query_caching.rs"

[[example]]
name = "26_schema_merging"
path = "examples/26_schema_merging.rs"

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

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

[[bench]]
name = "database_benchmarks"
path = "benches/database_benchmarks.rs"
harness = false

[[bench]]
name = "incremental_validation_benchmarks"
path = "benches/incremental_validation_benchmarks.rs"
harness = false

[[bench]]
name = "merge_strategies_benchmarks"
path = "benches/merge_strategies_benchmarks.rs"
harness = false

[[bench]]
name = "query_cache_benchmarks"
path = "benches/query_cache_benchmarks.rs"
harness = false

[[bench]]
name = "query_planner_benchmarks"
path = "benches/query_planner_benchmarks.rs"
harness = false

[[bench]]
name = "refinement_benchmarks"
path = "benches/refinement_benchmarks.rs"
harness = false

[[bench]]
name = "schema_evolution_benchmarks"
path = "benches/schema_evolution_benchmarks.rs"
harness = false

[[bench]]
name = "symbol_table_benchmarks"
path = "benches/symbol_table_benchmarks.rs"
harness = false

[[bench]]
name = "synchronization_benchmarks"
path = "benches/synchronization_benchmarks.rs"
harness = false

[[bench]]
name = "utilities_benchmarks"
path = "benches/utilities_benchmarks.rs"
harness = false

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.oxicode]
version = "0.1.1"
features = ["serde"]

[dependencies.rusqlite]
version = "0.38"
features = ["bundled"]
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.tensorlogic-ir]
version = "0.1.0-beta.1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1.49"
features = ["full"]
optional = true

[dependencies.tokio-postgres]
version = "0.7"
optional = true

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.proptest]
version = "1"