-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
47 lines (44 loc) · 1.06 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
[package]
name = "scie"
version = "0.1.0"
authors = ["Phodal Huang <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/phodal/scie"
documentation = "https://github.com/phodal/scie"
homepage = "https://github.com/phodal/scie"
description = """
Scie is a research about how to build simple code identify engine for different languages.
"""
categories = ["text-processing", "command-line-interface", "development-tools", "parser-implementations", "parsing"]
exclude = [
"vscode-tests/*",
"benchmark/*",
"fixtures/*",
".github/*",
".gitattributes",
".adr.json",
".cargo_vcs_info.json",
# vscode
"**/snippets/*",
"extensions/**/test/*",
"**/.vscodeignore",
"**/package.nls.json",
"**/language-configuration.json",
"**/*.language-configuration.json",
]
[dependencies]
[workspace]
members = [
"benchmark",
"scie-bingen",
"scie-detector",
"scie-grammar",
"scie-infra",
"scie-model",
"scie-onig",
"scie-scanner",
"scie-cli",
"scie-core"
]