-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 755 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 755 Bytes
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
[package]
name = "uncode_story"
version = "0.1.0"
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/phodal/uncode"
documentation = "https://github.com/phodal/uncode"
homepage = "https://github.com/phodal/uncode"
description = """
Uncode is a nocode IDE with POC.
"""
categories = ["text-processing", "command-line-interface", "development-tools"]
exclude = [
".coco/*",
"benchmark/*",
"fixtures/*",
"targets/*",
".github/*",
".gitattributes",
".adr.json",
]
[dependencies]
walkdir = "2"
gherkin_rust = "0.10.1"
lazy_static = "1.4.0"
regex = "1.0"
serde_json = "1.0"
serde = "1.0"
uncode_core = { path = "../uncode-core" }