trident-lang 0.1.0

A minimal, security-first universal language for provable computation
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 = "trident-lang"
version = "0.1.0"
build = false
exclude = [
    "docs/",
    "examples/",
    "tests/snapshots/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal, security-first universal language for provable computation"
homepage = "https://github.com/cyberia-to/trident"
readme = "README.md"
keywords = [
    "zk",
    "provable",
    "compiler",
    "blockchain",
    "zero-knowledge",
]
categories = [
    "compilers",
    "cryptography",
]
license-file = "LICENSE.md"
repository = "https://github.com/cyberia-to/trident"

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

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

[[bin]]
name = "trident-lsp"
path = "src/bin/trident-lsp.rs"

[[example]]
name = "ref_std_compiler_codegen"
path = "benches/references/std/compiler/codegen.rs"

[[example]]
name = "ref_std_compiler_lexer"
path = "benches/references/std/compiler/lexer.rs"

[[example]]
name = "ref_std_compiler_optimize"
path = "benches/references/std/compiler/optimize.rs"

[[example]]
name = "ref_std_compiler_parser"
path = "benches/references/std/compiler/parser.rs"

[[example]]
name = "ref_std_compiler_pipeline"
path = "benches/references/std/compiler/pipeline.rs"

[[example]]
name = "ref_std_compiler_typecheck"
path = "benches/references/std/compiler/typecheck.rs"

[[example]]
name = "ref_std_crypto_bigint"
path = "benches/references/std/crypto/bigint.rs"

[[example]]
name = "ref_std_crypto_merkle"
path = "benches/references/std/crypto/merkle.rs"

[[example]]
name = "ref_std_crypto_poseidon"
path = "benches/references/std/crypto/poseidon.rs"

[[example]]
name = "ref_std_crypto_poseidon2"
path = "benches/references/std/crypto/poseidon2.rs"

[[example]]
name = "ref_std_nn_tensor"
path = "benches/references/std/nn/tensor.rs"

[[example]]
name = "ref_std_private_poly"
path = "benches/references/std/private/poly.rs"

[[example]]
name = "ref_std_quantum_gates"
path = "benches/references/std/quantum/gates.rs"

[[example]]
name = "ref_std_trinity_inference"
path = "benches/references/std/trinity/inference.rs"

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

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

[dependencies.ariadne]
version = "0.4"

[dependencies.blake3]
version = "1"

[dependencies.burn]
version = "0.20"
features = [
    "wgpu",
    "autodiff",
    "ndarray",
]

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

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.petgraph]
version = "0.7"

[dependencies.pollster]
version = "0.4"

[dependencies.rayon]
version = "1.10"

[dependencies.rkyv]
version = "0.8"
features = ["bytecheck"]

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

[dependencies.statrs]
version = "0.18"

[dependencies.tokio]
version = "1"
features = [
    "io-std",
    "rt-multi-thread",
    "macros",
]

[dependencies.tower-lsp]
version = "0.20"

[dependencies.wgpu]
version = "24"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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

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