forked from ProvableHQ/leo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 917 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "leo-errors"
version = "1.10.0"
authors = [ "The Aleo Team <[email protected]>" ]
description = "Errors 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"
[dependencies.leo-span]
path = "../compiler/span"
version = "=1.10.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.backtrace]
version = "0.3.68"
[dependencies.colored]
version = "2.0.4"
[dependencies.color-backtrace]
version = "0.6.1"
[dependencies.derivative]
version = "2.2.0"
[dependencies.serde]
version = "1.0.193"
features = [ "derive", "rc" ]
[dependencies.thiserror]
version = "1.0.49"