-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb3ae67
commit af750b4
Showing
23 changed files
with
862 additions
and
639 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "logisheets_controller" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
description = "the core of LogiSheets" | ||
authors = ["ImJeremyHe<[email protected]>"] | ||
edition = "2018" | ||
|
@@ -26,11 +26,11 @@ unicode-segmentation = "1.10.1" | |
wildescape = "0.1.0" | ||
uuid ={ version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"]} | ||
|
||
logisheets_base = {version = "0.5.0", path = "./base", features = ["gents"]} | ||
logisheets_lexer = {version = "0.5.0", path = "./lexer"} | ||
logisheets_parser = {version = "0.5.0", path = "./parser"} | ||
logisheets_workbook = {version = "0.5.0", path = "../workbook", features = ["gents"]} | ||
logisheets_astchecker = {version = "0.5.0", path = "./ast_checker"} | ||
logisheets_base = {version = "0.6.0", path = "./base", features = ["gents"]} | ||
logisheets_lexer = {version = "0.6.0", path = "./lexer"} | ||
logisheets_parser = {version = "0.6.0", path = "./parser"} | ||
logisheets_workbook = {version = "0.6.0", path = "../workbook", features = ["gents"]} | ||
logisheets_astchecker = {version = "0.6.0", path = "./ast_checker"} | ||
|
||
gents = {version = "0.8.0", optional = true} | ||
gents_derives = {version = "0.8.0", optional = true} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "logisheets_astchecker" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
description = "validate the arguments in ast" | ||
authors = ["ImJeremyHe<[email protected]>"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
logisheets_parser = {version = "0.5.0", path = "../parser"} | ||
logisheets_base = {version = "0.5.0", path = "../base"} | ||
logisheets_parser = {version = "0.6.0", path = "../parser"} | ||
logisheets_base = {version = "0.6.0", path = "../base"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "logisheets_base" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
description = "some basic definitions for LogiSheets" | ||
authors = ["ImJeremyHe<[email protected]>"] | ||
license = "MIT" | ||
|
@@ -13,7 +13,7 @@ im = "15.0.0" | |
serde = {version = "1.0.125", features = ["derive"]} | ||
thiserror = "1.0.48" | ||
|
||
logisheets_workbook = {version = "0.5.0", path = "../../workbook"} | ||
logisheets_workbook = {version = "0.6.0", path = "../../workbook"} | ||
|
||
gents = {version = "0.8.0", optional = true} | ||
gents_derives = {version = "0.8.0", optional = true} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "logisheets_lexer" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
description = "the lexer for excel formula" | ||
authors = ["ImJeremyHe<[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "logisheets_parser" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
description = "the parser of excel formula" | ||
authors = ["ImJeremyHe<[email protected]>"] | ||
|
@@ -13,5 +13,5 @@ pest = "2.1.3" | |
pest_derive = "2.1.0" | ||
chrono = "0.4.19" | ||
regex = "1" | ||
logisheets_lexer = {version = "0.5.0", path = "../lexer"} | ||
logisheets_base = {version = "0.5.0", path = "../base"} | ||
logisheets_lexer = {version = "0.6.0", path = "../lexer"} | ||
logisheets_base = {version = "0.6.0", path = "../base"} |
Oops, something went wrong.