leo/tests/test-framework/Cargo.toml
dependabot[bot] 1a6b6a2eeb
Bump regex from 1.7.3 to 1.8.0
Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.0.
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/regex/commits)

---
updated-dependencies:
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-21 10:57:59 +00:00

63 lines
1.2 KiB
TOML

[package]
name = "leo-test-framework"
version = "1.7.0"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "The testing framework for the Leo programming language"
homepage = "https://aleo.org"
repository = "https://github.com/AleoHQ/leo"
keywords = [
"aleo",
"cryptography",
"leo",
"programming-language",
"zero-knowledge"
]
categories = [ "compilers", "cryptography", "web-programming" ]
include = [ "Cargo.toml", "src", "benches", "README.md", "LICENSE.md" ]
license = "GPL-3.0"
edition = "2018"
rust-version = "1.65"
[[bench]]
name = "leo_compiler"
harness = false
[dependencies.leo-errors]
path = "../../errors"
version = "1.7.0"
[dependencies.backtrace]
version = "0.3.67"
[dependencies.clap]
version = "3.2"
features = [ "derive" ]
[dependencies.serde]
version = "1.0"
features = [ "derive" ]
[dependencies.serde_json]
version = "1.0"
features = [ "preserve_order" ]
[dependencies.serde_yaml]
version = "0.8"
[dependencies.walkdir]
version = "2.3"
[dependencies.regex]
version = "1.8"
[dev-dependencies.leo-compiler]
path = "../../compiler/compiler"
version = "1.6.3"
[dev-dependencies.leo-span]
path = "../../compiler/span"
version = "1.6.3"
[dev-dependencies.criterion]
version = "0.4"