Conlang/Cargo.toml

25 lines
476 B
TOML
Raw Normal View History

2023-09-21 15:41:12 -05:00
[workspace]
members = [
"compiler/cl-repl",
"compiler/cl-typeck",
"compiler/cl-interpret",
"compiler/cl-structures",
"compiler/cl-token",
"compiler/cl-ast",
"compiler/cl-parser",
"compiler/cl-lexer",
"repline",
]
2023-09-21 15:41:12 -05:00
resolver = "2"
[workspace.package]
2023-10-23 21:38:06 -05:00
repository = "https://git.soft.fish/j/Conlang"
2025-01-28 06:56:48 -06:00
version = "0.0.8"
2023-10-23 21:38:06 -05:00
authors = ["John Breaux <j@soft.fish>"]
2023-09-21 15:41:12 -05:00
edition = "2021"
license = "MIT"
2023-10-23 23:42:39 -05:00
publish = ["soft-fish"]
[profile.dev]
opt-level = 1