-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
91 lines (79 loc) · 3.73 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
###############################################################################
# THE SAGE PROGRAMMING LANGUAGE #
# #
# █████ ██████ ███████ ██████ `-. _.-' #
# ███░░ ░░░░░███ ███░░███ ███░░███ \ `, .'/.' #
# ░░█████ ███████ ░███ ░███░███████ \`.`. :.-'.-= .-'/ #
# ░░░░███ ███░░███ ░███ ░███░███░░░ `-.:/o .'-'/ .' #
# ██████ ░░████████░░███████░░██████ o\o / ._/.' #
# ░░░░░░ ░░░░░░░░ ░░░░░███ ░░░░░░ \| /o|\`. #
# ███ ░███ |'o `.`.'. #
# ░░██████ `--' #
# ░░░░░░ #
# #
###############################################################################
[package]
name = "sage"
authors = ["Adam McDaniel <[email protected]> (https://adam-mcdaniel.net)"]
version = "0.1.1-alpha"
edition = "2021"
license = "MIT"
description = "A portable programming language with a compact backend"
readme = "README.md"
###############################################################################
## BINARIES
###############################################################################
[[bin]]
name = "sage"
path = "src/cli.rs"
bench = false
###############################################################################
## DEPENDENCIES
###############################################################################
[dependencies]
#######################################
## QUALITY OF LIFE / MACROS
#######################################
maplit = "1.0"
lazy_static = "1.5"
nom = "7.1"
#######################################
## THREADING / PARALLELISM
#######################################
rayon = "1.10"
#######################################
## ERROR REPORTING
#######################################
codespan-reporting = "0.11"
log = {version = "0.4", features = ["release_max_level_info"] }
env_logger = "0.11"
#######################################
## SAGE LISP PREPROCESSING
#######################################
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"
sage-lisp = { git = "https://github.com/adam-mcdaniel/sage-lisp" }
#######################################
## PARSING
#######################################
lalrpop-util = { version = "0.21", features = ["lexer"] }
regex = { version = "1.10", features = ["unicode"] }
clap = { version ="4.5", features = ["derive", "cargo"] }
no-comment = "0.0.3"
snailquote = "0.3"
[build-dependencies]
regex = { version = "1.10", features = ["unicode"] }
lalrpop = "0.21"
###############################################################################
## PROFILING
###############################################################################
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
bench = false
[[bench]]
name = "frontend"
harness = false
[dev-dependencies]
criterion = "0.5"
# [profile.release]
# debug = true