leo/tests/test-framework/Cargo.toml
dependabot[bot] 51735d773f
Bump regex from 1.9.6 to 1.10.0
Bumps [regex](https://github.com/rust-lang/regex) from 1.9.6 to 1.10.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/compare/1.9.6...1.10.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-10 10:27:34 +00:00

61 lines
1.2 KiB
TOML

[package]
name = "leo-test-framework"
version = "1.9.4"
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.69"
[[bench]]
name = "leo_compiler"
harness = false
[dependencies.leo-errors]
path = "../../errors"
version = "=1.9.4"
[dependencies.backtrace]
version = "0.3.68"
[dependencies.clap]
version = "4.4"
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.4"
[dependencies.regex]
version = "1.10"
[dev-dependencies.leo-compiler]
path = "../../compiler/compiler"
[dev-dependencies.leo-span]
path = "../../compiler/span"
[dev-dependencies.criterion]
version = "0.5"