mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-10 10:05:56 +03:00
c272180a9e
Bumps [regex](https://github.com/rust-lang/regex) from 1.5.6 to 1.6.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.5.6...1.6.0) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.1 KiB
TOML
59 lines
1.1 KiB
TOML
[package]
|
|
name = "leo-test-framework"
|
|
version = "1.5.3"
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
|
description = "Leo testing framework"
|
|
homepage = "https://aleo.org"
|
|
repository = "https://github.com/AleoHQ/leo"
|
|
keywords = [
|
|
"aleo",
|
|
"cryptography",
|
|
"leo",
|
|
"programming-language",
|
|
"zero-knowledge",
|
|
]
|
|
categories = ["cryptography::cryptocurrencies", "web-programming"]
|
|
include = ["Cargo.toml", "src", "README.md", "LICENSE.md"]
|
|
license = "GPL-3.0"
|
|
edition = "2018"
|
|
|
|
[[bench]]
|
|
name = "leo_compiler"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
backtrace = "0.3.65"
|
|
walkdir = "2.3.2"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = ["derive"]
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0"
|
|
features = ["preserve_order"]
|
|
|
|
[dependencies.serde_yaml]
|
|
version = "0.8"
|
|
|
|
[dependencies.clap]
|
|
version = "3.2.8"
|
|
features = ["derive"]
|
|
|
|
[dependencies.leo-errors]
|
|
path = "../../leo/errors"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.regex]
|
|
version = "1.6"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.3"
|
|
|
|
[dev-dependencies.leo-compiler]
|
|
path = "../../compiler/compiler"
|
|
version = "1.5.3"
|
|
|
|
[dev-dependencies.leo-span]
|
|
path = "../../leo/span"
|
|
version = "1.5.3" |