edlang/edb/Cargo.toml

24 lines
721 B
TOML
Raw Permalink Normal View History

2024-01-14 08:36:46 +00:00
[package]
name = "edb"
2024-03-11 11:17:53 +00:00
version = "0.0.1-alpha.14"
2024-01-14 08:36:46 +00:00
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "The edlang language builder."
2024-01-14 08:36:46 +00:00
edition = "2021"
readme = "README.md"
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
2024-02-13 06:30:44 +00:00
documentation = "https://docs.rs/edlang"
repository = "https://github.com/edg-l/edlang"
2024-01-14 08:36:46 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-11 11:17:53 +00:00
edlang_driver = { version = "0.0.1-alpha.14", path = "../lib/edlang_driver" }
anyhow = "1"
clap = { version = "4.4.16", features = ["derive"] }
toml = "0.8.10"
serde = { version = "1.0.197", features = ["derive"] }
git2 = "0.18.2"
2024-03-11 11:02:14 +00:00
owo-colors = "4.0.0"