Skip to content

Commit 0e6ea7f

Browse files
authored
Merge pull request #89 from Tsukuba-Programming-Lab/#88_UpdateCFLTrait
#88 CFL トレイト周りの改修
2 parents 57d6511 + 17e75b4 commit 0e6ea7f

File tree

89 files changed

+993
-980
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+993
-980
lines changed

Cargo.lock

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
cargo-features = ["edition2024"]
2-
31
[package]
42
name = "copager"
53
version = "0.3.0"
@@ -9,7 +7,7 @@ edition = "2024"
97
serde_json = { version = "1.0.117", optional = true }
108
copager_core = { path = "./crates/core" }
119
copager_core_macros = { path = "./crates/core_macros" }
12-
copager_cfl = { path = "./crates/cfl" }
10+
copager_lang = { path = "./crates/lang" }
1311
copager_lex = { path = "./crates/lex", optional = true }
1412
copager_lex_regex = { path = "./crates/lex_regex", optional = true }
1513
copager_parse = { path = "./crates/parse", optional = true }
@@ -45,7 +43,7 @@ all = [
4543

4644
# common
4745
default = ["dep:copager_lex", "dep:copager_parse"]
48-
derive = ["copager_cfl/derive"]
46+
derive = ["copager_lang/derive"]
4947
prebuild = ["dep:serde_json"]
5048
template = ["dep:copager_lex_regex"]
5149
dev = ["dep:copager_parse_common", "dep:copager_parse_lr_common"]
@@ -70,8 +68,8 @@ members = [
7068
# Copager
7169
"./crates/core",
7270
"./crates/core_macros",
73-
"./crates/cfl",
74-
"./crates/cfl_derive",
71+
"./crates/lang",
72+
"./crates/lang_derive",
7573
"./crates/lex",
7674
"./crates/lex_regex",
7775
"./crates/parse",

crates/cfl/src/lib.rs

Lines changed: 0 additions & 46 deletions
This file was deleted.

crates/cfl_derive/src/impl/cfl.rs

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)