leo/symbol-table/Cargo.toml
Collin Chin a1d9d1a0f3
Merge pull request #500 from AleoHQ/fix/typo
Fix typo in Cargo.toml category
2020-12-15 14:56:17 -05:00

45 lines
907 B
TOML

[package]
name = "leo-symbol-table"
version = "1.0.7"
authors = [ "The Aleo Team <hello@aleo.org>" ]
description = "Stores user-defined variables during type resolution"
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"
[dependencies.leo-ast]
path = "../ast"
version = "1.0.7"
[dependencies.leo-core]
path = "../core"
version = "1.0.7"
[dependencies.leo-grammar]
path = "../grammar"
version = "1.0.7"
[dependencies.leo-imports]
path = "../imports"
version = "1.0.7"
[dependencies.indexmap]
version = "1.6.1"
features = [ "serde-1" ]
[dependencies.serde]
version = "1.0"
[dependencies.thiserror]
version = "1.0"