arcanum/Cargo.toml

25 lines
433 B
TOML
Raw Normal View History

2025-01-30 19:17:46 -05:00
[package]
name = "arcanum"
version = "0.0.0"
edition = "2021"
description = "A programming language compiler."
repository = "/CyberMages/arcanum"
authors = ["CyberMages LLC <Software@CyberMagesLLC.com>", "Jason Travis Smith <Myrddin@CyberMages.tech>"]
readme = "README.md"
license-file = "LICENSE.md"
2025-01-31 18:20:36 -05:00
[lib]
name = "arcanum"
path = "src/lib.rs"
crate-type = ["lib"]
[[bin]]
name = "arcanum"
path = "src/main.rs"
2025-01-30 19:17:46 -05:00
[dependencies]