# 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 = "torq_lang" version = "0.1.2" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A programming language for concurrent dataflow." readme = "README.md" license-file = "LICENSE.md" [lib] name = "torq_lang" path = "src/lib.rs" [[bin]] name = "torq_lang" path = "src/main.rs" [[test]] name = "test_lexer_sizes" path = "tests/test_lexer_sizes.rs" [[test]] name = "test_value_sizes" path = "tests/test_value_sizes.rs" [[bench]] name = "fibonacci" path = "benches/fibonacci.rs" harness = false [[bench]] name = "linear_vs_binary_search" path = "benches/linear_vs_binary_search.rs" harness = false [dependencies] [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"]