-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (37 loc) · 945 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
36
37
38
39
40
41
42
43
[package]
name = "ara_parser"
description = "A fault-tolerant, recursive-descent parser for Ara Programming Language 🌲"
repository = "https://github.com/ara-lang/ara"
version = "0.6.6"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Saif Eddin Gmati <azjezz@protonmail.com>"]
[lib]
doctest = false
[[bin]]
name = "ara-internal-snapshot"
path = "bin/snapshot.rs"
[dependencies]
ara_source = { version = "0.2.0" }
ara_reporting = { version = "0.6.1" }
schemars = { version = "0.8.11" }
serde = { version = "1.0.149", features = ["derive"] }
serde_json = { version = "1.0.89" }
bincode = { version = "2.0.0-rc.2" }
[dev-dependencies]
criterion = "0.4"
pretty_assertions = { version = "1.3.0" }
[[bench]]
name = "bincode"
harness = false
[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