-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (42 loc) · 1.15 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
43
44
45
46
47
48
[package]
name = "lingua-franca"
version = "0.2.0"
edition = "2021"
description = "Package manager and build tool for the Lingua Franca coordination language"
homepage = "https://lf-lang.org"
repository = "https://github.com/lf-lang/lingo"
license = "BSD-2-Clause"
[lib]
name = "liblingo"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "lingo"
publish = true
path = "./src/main.rs"
required-features = ["binary"]
[features]
default = ["binary"]
binary = ["which", "git2"]
[dependencies]
clap = { version = "4.1", features = ["derive"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
regex = "1.8"
lazy_static = "1.4"
rayon = "1.7"
toml = { version = "0.8" }
crossbeam = "0.8"
run_script = "0.11"
getrandom = {version="0.2", features = ["js"]}
which = { version = "6.0", optional = true }
git2 = { version = "0.19", optional = true, default-features=false, features = ["https"]}
print_logger = "0.2.0"
tempfile = "3.0"
url = { version = "2.5", features = ["serde"] }
anyhow = "1.0"
versions = { version = "6.3.2", features = ["serde"]}
log = "0.4"
sha1dir = { version = "1.0", git = "https://github.com/tanneberger/sha1dir" }
colored = "2.1.0"