-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 806 Bytes
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
[package]
name = "phoenix-lang"
description = "A simple, fast programming language"
version = "1.5.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/TomtheCoder2/phoenix"
readme = "README.md"
keywords = ["phoenix", "programming", "language", "fast", "simple"]
categories = ["development-tools", "embedded", "compilers"]
authors = ["TomtheCoder2 (Nautilus) <@TomtheCoder2>"]
default-run = "phoenix"
[dependencies]
rustyline = "14.0.0"
lazy_static = "1.4.0"
bincode = "1.3.3"
serde = { version = "1.0.26", features = ["derive"] }
clap = { version = "4.2.1", features = ["derive"] }
lz4-compression = "0.7.0"
colored = "2"
rand = "0.8.4"
strum_macros = "0.26.4"
toml = { version = "0.8.2", optional = true }
ron = {version= "0.8.1",optional = true }
[features]
debug = ["toml", "ron"]