-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
74 lines (67 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "logisheets"
version.workspace = true
description = "A web spreadsheets application written in Rust and Typescript"
keywords = ["excel", "spreadsheets", "ooxml", "logisheets", "xlsx"]
readme = "README.md"
repository = "https://github.com/logisky/LogiSheets"
license.workspace = true
include = [
"crates/workbook/**/*",
"crates/controller/**/*",
"src/lib.rs",
"Cargo.toml",
]
edition.workspace = true
[workspace]
members = [
"crates/buildtools",
"crates/controller",
"crates/controller/ast_checker",
"crates/controller/base",
"crates/controller/lexer",
"crates/controller/parser",
"crates/formatter",
"crates/logiscript",
"crates/sequencer",
"crates/wasms/fc",
"crates/wasms/server",
"crates/workbook",
"crates/xmldiff",
]
[workspace.package]
version = "0.7.0"
authors = ["JeremyHe <[email protected]>"]
license = "MIT"
edition = "2018"
[workspace.dependencies]
chrono = "0.4"
futures = "0.3"
gents = "0.8"
gents_derives = "0.8"
getrandom = "0.2"
im = "15.0"
lazy_static = "1.4"
pest = "2.7"
pest_derive = "2.5"
quick-xml = "0.31"
regex = "1"
serde = "1"
serde_json = "1"
thiserror = "1.0"
xmlserde = "0.10"
xmlserde_derives = "0.10"
wildescape = "0.1"
logisheets_lexer = { path = "crates/controller/lexer", version = "0.7.0" }
logisheets_parser = { path = "crates/controller/parser", version = "0.7.0" }
logisheets_base = { path = "crates/controller/base", version = "0.7.0" }
logisheets_controller = { path = "crates/controller", version = "0.7.0" }
logisheets_workbook_derives = { path = "crates/workbook/derives", version = "0.7.0" }
xmldiff = { path = "crates/xmldiff", version = "0.7.0" }
logisheets_workbook = { path = "crates/workbook", version = "0.7.0" }
[dependencies]
logisheets_controller = { workspace = true }
logisheets_workbook = { workspace = true }
[dev-dependencies]
glob = "0.3.1"
logiscript = { path = "crates/logiscript" }