mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-13 08:47:17 +03:00
b2b459825b
Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.11 to 0.11.12. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.11...v0.11.12) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
179 lines
3.0 KiB
TOML
179 lines
3.0 KiB
TOML
[package]
|
|
name = "leo-lang"
|
|
version = "1.5.3"
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
|
description = "The Leo programming language"
|
|
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", "leo", "README.md", "LICENSE.md" ]
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
rust-version = "1.63"
|
|
|
|
[lib]
|
|
path = "leo/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "leo"
|
|
path = "leo/main.rs"
|
|
|
|
[workspace]
|
|
members = [
|
|
"compiler/ast",
|
|
"compiler/compiler",
|
|
"compiler/core",
|
|
"compiler/parser",
|
|
"compiler/passes",
|
|
"compiler/span",
|
|
"docs/grammar",
|
|
"errors",
|
|
"leo/package",
|
|
"tests/test-framework",
|
|
]
|
|
|
|
[dependencies.leo-ast]
|
|
path = "./compiler/ast"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-compiler]
|
|
path = "./compiler/compiler"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-errors]
|
|
path = "./errors"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-package]
|
|
path = "./leo/package"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-parser]
|
|
path = "./compiler/parser"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.leo-span]
|
|
path = "./compiler/span"
|
|
version = "1.5.3"
|
|
|
|
[dependencies.aleo]
|
|
git = "https://github.com/AleoHQ/aleo.git"
|
|
rev = "ddbb647"
|
|
|
|
[dependencies.snarkvm]
|
|
version = "0.9.0"
|
|
#git = "https://github.com/AleoHQ/snarkVM.git"
|
|
#rev = "69cf3bd"
|
|
features = ["aleo-cli", "circuit", "console", "parallel"]
|
|
|
|
[dependencies.backtrace]
|
|
version = "0.3.66"
|
|
|
|
[dependencies.clap]
|
|
version = "3.2"
|
|
features = ["derive", "env"]
|
|
|
|
[dependencies.color-backtrace]
|
|
version = "0.5.1"
|
|
|
|
[dependencies.colored]
|
|
version = "2.0"
|
|
|
|
[dependencies.console]
|
|
version = "0.15.1"
|
|
|
|
[dependencies.dirs]
|
|
version = "4.0.0"
|
|
|
|
[dependencies.indexmap]
|
|
version = "1.9"
|
|
features = ["serde"]
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.4.0"
|
|
|
|
[dependencies.rand]
|
|
version = "0.8"
|
|
|
|
[dependencies.rand_core]
|
|
version = "0.6.4"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.12"
|
|
features = [ "blocking", "json", "multipart" ]
|
|
|
|
[dependencies.self_update]
|
|
version = "0.32.0"
|
|
features = [ "archive-zip" ]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = [ "derive" ]
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0"
|
|
|
|
[dependencies.sys-info]
|
|
version = "0.9.1"
|
|
|
|
[dependencies.toml]
|
|
version = "0.5"
|
|
|
|
[dependencies.tracing]
|
|
version = "0.1"
|
|
|
|
[dependencies.tracing-subscriber]
|
|
version = "0.3.15"
|
|
features = [ "fmt" ]
|
|
|
|
[dependencies.zip]
|
|
version = "0.6"
|
|
|
|
[target."cfg(windows)".dependencies.ansi_term]
|
|
version = "0.12.1"
|
|
|
|
[dev-dependencies.assert_cmd]
|
|
version = "2.0.4"
|
|
|
|
[dev-dependencies.rusty-hook]
|
|
version = "0.11.2"
|
|
|
|
[dev-dependencies.test_dir]
|
|
version = "0.2.0"
|
|
|
|
[build-dependencies.walkdir]
|
|
version = "2"
|
|
|
|
[features]
|
|
default = [ ]
|
|
ci_skip = [ "leo-compiler/ci_skip" ]
|
|
noconfig = [ ]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
incremental = true
|
|
|
|
[profile.bench]
|
|
opt-level = 3
|
|
debug = false
|
|
rpath = false
|
|
lto = "thin"
|
|
incremental = true
|
|
debug-assertions = false
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
|
|
[profile.test]
|
|
opt-level = 0
|
|
debug-assertions = true
|
|
debug = true
|