-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (35 loc) · 1.03 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
[package]
name = "ara_forest"
version = "0.0.0"
edition = "2021"
description = "A cached, multi-threaded parsing library for Ara Programming Language 🍃"
readme = "README.md"
repository = "https://github.com/ara-lang/forest"
documentation = "https://docs.rs/ara_forest"
homepage = "https://ara-lang.io"
exclude = ["/.github/*"]
authors = ["Saif Eddin Gmati <azjezz@protonmail.com>"]
license = "MIT OR Apache-2.0"
keywords = ["ara", "php", "programming-language", "parser"]
categories = ["compilers", "development-tools::build-utils"]
[dependencies]
ara_parser = { version = "0.6.6" }
ara_source = { version = "0.2.0" }
ara_reporting = { version = "0.6.1" }
num_cpus = { version = "1.15.0" }
rustc-hash = { version = "1.1.0" }
walkdir = { version = "2.3.2" }
bincode = { version = "2.0.0-rc.2" }
log = { version = "0.4.17" }
simplelog = { version = "0.12.0" }
[profile.release]
opt-level = 3
debug = false
strip = 'symbols'
debug-assertions = false
overflow-checks = false
lto = 'fat'
panic = 'abort'
incremental = true
codegen-units = 1
rpath = true