tensorlogic-cli 0.1.0-beta.1

TensorLogic command-line interface and library for compiling logical expressions to tensor graphs
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-cli"
version = "0.1.0-beta.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TensorLogic command-line interface and library for compiling logical expressions to tensor graphs"
homepage = "https://github.com/cool-japan/tensorlogic"
readme = "README.md"
keywords = [
    "logic",
    "tensor",
    "compiler",
    "cli",
]
categories = [
    "command-line-utilities",
    "compilers",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/tensorlogic"

[features]
gpu = []
simd = []

[lib]
name = "tensorlogic_cli"
crate-type = [
    "rlib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "tensorlogic"
path = "src/main.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "cli_performance"
path = "benches/cli_performance.rs"

[dependencies.anyhow]
version = "1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "cargo",
    "env",
]

[dependencies.clap_complete]
version = "4.5"

[dependencies.colored]
version = "3.1"

[dependencies.dirs]
version = "6.0"

[dependencies.flate2]
version = "1.1"

[dependencies.indicatif]
version = "0.18"

[dependencies.notify]
version = "8.2"

[dependencies.num_cpus]
version = "1.17"

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

[dependencies.rayon]
version = "1.11"

[dependencies.rustyline]
version = "17.0"

[dependencies.scirs2-core]
version = "0.1.3"

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

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

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

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

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

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

[dependencies.toml]
version = "0.9"

[dev-dependencies.assert_cmd]
version = "2.1"

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

[dev-dependencies.predicates]
version = "3.1"