mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-26 16:37:30 +03:00
8ee5f2180d
Bumps [num-traits](https://github.com/rust-num/num-traits) from 0.2.17 to 0.2.18. - [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-traits/compare/num-traits-0.2.17...num-traits-0.2.18) --- updated-dependencies: - dependency-name: num-traits dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.1 KiB
TOML
59 lines
1.1 KiB
TOML
[package]
|
|
name = "leo-passes"
|
|
version = "1.10.0"
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
|
description = "Compiler passes 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", "README.md", "LICENSE.md" ]
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
rust-version = "1.69"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies.snarkvm]
|
|
workspace = true
|
|
|
|
[dependencies.leo-ast]
|
|
path = "../ast"
|
|
version = "=1.10.0"
|
|
|
|
[dependencies.leo-errors]
|
|
path = "../../errors"
|
|
version = "=1.10.0"
|
|
|
|
[dependencies.leo-parser]
|
|
path = "../parser"
|
|
version = "=1.10.0"
|
|
|
|
[dependencies.leo-span]
|
|
path = "../span"
|
|
version = "=1.10.0"
|
|
|
|
[dependencies.indexmap]
|
|
version = "1.9"
|
|
|
|
[dependencies.itertools]
|
|
version = "0.12.1"
|
|
|
|
[dependencies.num-traits]
|
|
version = "0.2.18"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = [ "derive", "rc" ]
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0"
|
|
features = [ "preserve_order" ]
|