-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 843 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
[package]
name = "mango"
description = "The Mango programming language (UNDER CONSTRUCTION)"
version = "0.6.0"
authors = ["Mark <[email protected]>"]
homepage = "https://mangocode.org/"
license = "Apache-2.0"
edition = "2018"
publish = true
include = [
"src/**/*",
"Cargo.toml"
]
[[bin]]
name = "mango"
path = "src/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
serde_json = "1.0"
dirs = "3.0"
whoami = "1.1"
structopt = { version = "0.3", features = [ "paw" ] }
lazy_static = "1.4"
ws = "0.9"
log = "0.4"
async-std = "1.9"
env_logger = "0.8"
paw = "1.0"
include_dir = "0.6"
[dev-dependencies]
serial_test = "0.5"
tempfile = "3.2"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
#TODO @mark: jemalloc hasn't been updated in a fair while, still usable?
jemallocator = "0.3"