-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (48 loc) · 1.3 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
49
50
51
52
53
54
55
56
57
[package]
name = "calcit"
version = "0.9.7"
authors = ["jiyinyiyong <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Interpreter and js codegen for Calcit"
homepage = "http://calcit-lang.org"
documentation = "https://docs.rs/crate/calcit/"
repository = "https://github.com/calcit-lang/calcit.rs"
readme = "README.md"
exclude = ["lib/*", "calcit/*", "js-out/*", "scripts/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cirru_edn = "0.6.13"
# cirru_edn = { path = "/Users/chenyong/repo/cirru/edn.rs" }
cirru_parser = "0.1.31"
# cirru_parser = { path = "/Users/chenyong/repo/cirru/parser.rs" }
argh = "0.1.13"
dirs = "5.0.1"
notify = "7.0.0"
notify-debouncer-mini = "0.5.0"
walkdir = "2.5.0"
hex = "0.4.3"
rpds = "1.1.0"
im_ternary_tree = "0.0.18"
# im_ternary_tree = { path = "/Users/chenyong/repo/calcit-lang/ternary-tree.rs" }
colored = "3.0.0"
strum = "0.25"
strum_macros = "0.25"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libloading = "0.8.6"
ctrlc = "3.4.5"
[lib]
name = "calcit"
path = "src/lib.rs"
[[bin]]
name = "cr"
path = "src/bin/cr.rs"
[[bin]]
name = "bundle_calcit"
path = "src/bin/bundle_calcit.rs"
[[bin]]
name = "caps"
path = "src/bin/calcit_deps.rs"
# [profile.release]
# debug = true
# opt-level = 1