edlang/lib/edlang_ir/Cargo.toml

19 lines
545 B
TOML
Raw Normal View History

2024-01-27 11:55:54 +00:00
[package]
name = "edlang_ir"
2024-05-26 15:20:36 +00:00
version = "0.0.1-alpha.19"
2024-02-13 06:28:19 +00:00
authors = ["Edgar Luque <edgar@edgarluque.com>"]
description = "edlang IR"
2024-01-27 11:55:54 +00:00
edition = "2021"
2024-02-13 06:28:19 +00:00
keywords = ["llvm", "compiler"]
license = "AGPL-3.0-only"
categories = ["compilers"]
2024-02-13 06:30:44 +00:00
documentation = "https://docs.rs/edlang_ir"
repository = "https://github.com/edg-l/edlang"
2024-01-27 11:55:54 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-05-26 15:20:36 +00:00
edlang_span = { version = "0.0.1-alpha.19", path = "../edlang_span" }
2024-03-27 11:11:50 +00:00
smallvec = "1.13.2"
2024-02-28 08:53:58 +00:00
educe = "0.5.11"