memobuild 0.2.0

A high-performance incremental build system with smart caching and OCI image support
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 = "memobuild"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance incremental build system with smart caching and OCI image support"
homepage = "https://github.com/nrelab/MemoBuild"
readme = "README.md"
keywords = [
    "build-system",
    "caching",
    "docker",
    "incremental",
    "oci",
]
categories = [
    "development-tools",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/nrelab/MemoBuild"

[features]
containerd = [
    "containerd-client",
    "tonic",
    "prost",
    "prost-types",
]
default = []
remote-exec = [
    "tonic",
    "prost",
    "prost-types",
]
server = []

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1"

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

[dependencies.axum]
version = "0.6.20"
features = [
    "http1",
    "http2",
    "json",
    "ws",
]

[dependencies.blake3]
version = "1"

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

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

[dependencies.clap_complete]
version = "4.5.66"

[dependencies.colored]
version = "3.1.1"

[dependencies.containerd-client]
version = "0.4"
optional = true

[dependencies.flate2]
version = "1.0"

[dependencies.futures]
version = "0.3"

[dependencies.glob]
version = "0.3"

[dependencies.hex]
version = "0.4"

[dependencies.indicatif]
version = "0.18.4"

[dependencies.oci-spec]
version = "0.6"

[dependencies.parking_lot]
version = "0.12"

[dependencies.petgraph]
version = "0.6"

[dependencies.prost]
version = "0.11"
optional = true

[dependencies.prost-types]
version = "0.11"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
    "blocking",
]
default-features = false

[dependencies.rusqlite]
version = "0.29"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.tar]
version = "0.4"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tonic]
version = "0.10"
optional = true

[dependencies.tower-http]
version = "0.4"
features = [
    "fs",
    "trace",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
    "fmt",
    "ansi",
]

[dependencies.walkdir]
version = "2"

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

[dev-dependencies.tempfile]
version = "3"