-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 819 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "i-lang"
version = "0.1.0"
authors = ["Evgeny Ukhanov <mrlsd@ya.ru>"]
description = "Functional programming language"
license = "MIT"
repository = "https://github.com/mrLSD/iLang"
readme = "README.md"
edition = "2018"
[dependencies]
nom = "5.1"
nom_locate = "2.1"
clap = "2.34"
[dependencies.inkwell]
git = "https://github.com/TheDan64/inkwell"
branch = "master"
features = ["llvm15-0"]
[features]
default = ["fn_body", "fn_body_statement"]
fn_main = []
fn_global_let = []
fn_body = []
fn_body_statement = ["function_call", "function_value_call"]
fn_body_statement_dump = []
function_call = ["function_value"]
function_value_call = []
# function_call = []
function_value = ["value_expression"]
# function_value = []
value_expression = ["type_expression"]
# value_expression = []
type_expression = []