-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (37 loc) · 1.68 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
[package]
name = "calypso"
version = "0.1.0"
authors = ["ThePuzzlemaker <[email protected]>"]
edition = "2021"
description = "Calypso is a mostly imperative language with some functional influences that is focused on flexibility and simplicity."
readme = "README.md"
homepage = "https://github.com/calypso-lang/calypso/"
repository = "https://github.com/calypso-lang/calypso/"
license = "MIT OR Apache-2.0"
keywords = ["interpreter"]
categories = ["development-tools", "parser-implementations"]
build = "build.rs"
rust-version = "1.66.1"
[dependencies]
mimalloc = { version = "0.1.31", optional = true }
calypso_parsing = { path = "libs/calypso_parsing", version = "0.1.0" }
calypso_diagnostic = { path = "libs/calypso_diagnostic", version = "0.1.0" }
calypso_repl = { path = "libs/calypso_repl", version = "0.1.0" }
calypso_base = { path = "libs/calypso_base", version = "0.1.0", default-features = false, features = ["ui"] }
saturnvm = { path = "libs/saturnvm", version = "0.1.0" }
tracing-subscriber = { version = "0.3.15", features = ["parking_lot", "env-filter", "json"] }
once_cell = "1.15.0"
calypso_common = { path = "libs/calypso_common", version = "0.1.0" }
calypso_filety = { path = "libs/calypso_filety", version = "3.0.0" }
calypso_ast = { path = "libs/calypso_ast", version = "0.1.0" }
trycmd = "0.14.10"
clap = { version = "3.2.23", features = ["derive", "env"] }
[features]
default = ["mimalloc", "mimalloc/secure"]
[workspace]
exclude = ["libs/sublib_skeleton"]
[build-dependencies]
vergen = { version = "7.2.1", default-features = false, features = ["build", "cargo", "git", "rustc"] }
# Do not enable with real builds, for benchmarking and debugging only.
# [profile.release]
# debug = true