-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
54 lines (48 loc) · 1.22 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
[package]
name = "datum"
version = "0.1.0"
authors = ["Phodal Huang <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/datum-lang/datum"
documentation = "https://github.com/datum-lang/datum"
homepage = "https://github.com/datum-lang/datum"
description = """
Datum is a language for describe other languages
"""
categories = ["text-processing", "command-line-interface", "development-tools", "parser-implementations", "parsing"]
exclude = [
"benchmark/*",
"fixtures/*",
".github/*",
".gitattributes",
".adr.json",
".cargo_vcs_info.json",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33"
# serial
serde_json = "1.0"
serde = "1.0"
serde_derive = { version = "1.0" }
# lsp
tower-lsp = "0.13"
lsp-types = "0.81"
tokio = { version = "0.2", features = ["rt-core", "io-std"] }
dc_parser = { path = "dc_parser" }
dc_compiler = { path = "dc_compiler" }
dc_codegen = { path = "dc_codegen" }
[dev-dependencies]
assert_cmd = "2.0.0"
[workspace]
members = [
"dc_compiler",
"dc_lexer",
"dc_parser",
"dc_codegen",
"dc_hir",
"dc_mir",
"dc_ir_pretty", # output IR for debug
]