edlang/edb/Cargo.toml

24 lines
720 B
TOML
Raw Normal View History

2024-01-14 08:36:46 +00:00
[package]
name = "edb"
2024-04-09 11:00:38 +00:00
version = "0.0.1-alpha.17"
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-04-09 11:00:38 +00:00
edlang_driver = { version = "0.0.1-alpha.17", path = "../lib/edlang_driver" }
anyhow = "1"
2024-03-27 11:11:50 +00:00
clap = { version = "4.5.4", features = ["derive"] }
toml = "0.8.12"
serde = { version = "1.0.197", features = ["derive"] }
2024-03-27 11:11:50 +00:00
git2 = "0.18.3"
2024-03-11 11:02:14 +00:00
owo-colors = "4.0.0"