mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
ea69e0b4b6
743: Bump self_update from 0.25.0 to 0.26.0 r=collinc97 a=dependabot-preview[bot] Bumps [self_update](https://github.com/jaemk/self_update) from 0.25.0 to 0.26.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jaemk/self_update/blob/master/CHANGELOG.md">self_update's changelog</a>.</em></p> <blockquote> <h2>[0.26.0]</h2> <h3>Added</h3> <h3>Changed</h3> <ul> <li>Clean up dangling temporary directories on Windows.</li> </ul> <h3>Removed</h3> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/jaemk/self_update/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=self_update&package-manager=cargo&previous-version=0.25.0&new-version=0.26.0)](https://dependabot.com/compatibility-score/?dependency-name=self_update&package-manager=cargo&previous-version=0.25.0&new-version=0.26.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
184 lines
2.8 KiB
TOML
184 lines
2.8 KiB
TOML
[package]
|
|
name = "leo-lang"
|
|
version = "1.2.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 = "2018"
|
|
|
|
[lib]
|
|
path = "leo/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "leo"
|
|
path = "leo/main.rs"
|
|
|
|
[workspace]
|
|
members = [
|
|
"asg",
|
|
"ast",
|
|
"compiler",
|
|
"gadgets",
|
|
"imports",
|
|
"input",
|
|
"linter",
|
|
"package",
|
|
"parser",
|
|
"state",
|
|
"synthesizer",
|
|
]
|
|
|
|
[dependencies.leo-ast]
|
|
path = "./ast"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-compiler]
|
|
path = "./compiler"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-gadgets]
|
|
path = "./gadgets"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-imports]
|
|
path = "./imports"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-input]
|
|
path = "./input"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-package]
|
|
path = "./package"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-state]
|
|
path = "./state"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.leo-synthesizer]
|
|
path = "./synthesizer"
|
|
version = "1.2.3"
|
|
|
|
[dependencies.snarkvm-algorithms]
|
|
version = "0.2.0"
|
|
#default-features = false
|
|
|
|
[dependencies.snarkvm-curves]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-gadgets]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-r1cs]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-utilities]
|
|
version = "0.2.0"
|
|
|
|
[dependencies.anyhow]
|
|
version = "1.0"
|
|
|
|
[dependencies.structopt]
|
|
version = "0.3"
|
|
|
|
[dependencies.clap]
|
|
version = "2.33.3"
|
|
|
|
[dependencies.colored]
|
|
version = "2.0"
|
|
|
|
[dependencies.dirs]
|
|
version = "3.0.1"
|
|
|
|
[dependencies.console]
|
|
version = "0.14.0"
|
|
|
|
[dependencies.from-pest]
|
|
version = "0.3.1"
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.4.0"
|
|
|
|
[dependencies.notify]
|
|
version = "4.0.15"
|
|
|
|
[dependencies.rand]
|
|
version = "0.8"
|
|
|
|
[dependencies.rand_core]
|
|
version = "0.6.2"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.1"
|
|
features = [ "blocking", "json", "multipart" ]
|
|
|
|
[dependencies.self_update]
|
|
version = "0.26.0"
|
|
features = [ "archive-zip" ]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = [ "derive" ]
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0"
|
|
|
|
[dependencies.thiserror]
|
|
version = "1.0"
|
|
|
|
[dependencies.toml]
|
|
version = "0.5"
|
|
|
|
[dependencies.tracing]
|
|
version = "0.1"
|
|
|
|
[dependencies.tracing-subscriber]
|
|
version = "0.2"
|
|
features = [ "fmt" ]
|
|
|
|
[dependencies.zip]
|
|
version = "0.5"
|
|
|
|
[dev-dependencies.rusty-hook]
|
|
version = "0.11.2"
|
|
|
|
[features]
|
|
default = [ ]
|
|
ci_skip = [ "leo-compiler/ci_skip" ]
|
|
|
|
[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
|