-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 849 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
[package]
name = "rouge"
version = "0.1.0"
authors = ["Ashton Scott Snapp <[email protected]>"]
edition = "2021"
description = "A statically-typed programming language for applications, plugins, and config files."
readme = "README.md"
license = "MIT"
categories = ["compilers", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# Library needs to produce both a C-loadable dynamic library and a Rust library.
crate-type = ["cdylib", "rlib"]
[dependencies]
# Lexer
logos = "0.12"
# Parser
nom = "7.1"
# Command line interface
clap = { version = "4.0", features = ["cargo", "unicode"] }
# Bytecode file compression and decompression.
zstd = "0.11"
# Used to dynamically load native libraries for Rouge programs to use.
dlopen = { version = "0.1", optional = true }