Skip to content

Commit

Permalink
Update core version
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmtcn123 committed Jul 31, 2023
1 parent 1b406c7 commit b2a3825
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ellie_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ homepage = "https://www.ellie-lang.org"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", default-features = false, features = ["alloc"], optional = true }
path-absolutize = { version = "3.0.10", optional = true }
ellie_core = { path = "core", version = "0.6.0" }
ellie_core = { path = "core", version = "*" }
#ellie_assist = { path = "EllieAssist", version = "*", optional = true }
ellie_tokenizer = { path = "tokenizer", version = "0.5.0", default-features = false, optional = true }
ellie_parser = { path = "parser", version = "0.6.0", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/bytecode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/behemehal/Ellie-Language"
homepage = "https://www.ellie-lang.org"

[dependencies]
ellie_core = { path = "../core", version = "0.6.0" }
ellie_core = { path = "../core", version = "*" }
ellie_parser = { path = "../parser", version = "0.6.0" }
enum-as-inner = "0.6.0"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
ellie_tokenizer = { path = "../tokenizer", version = "0.5.0" }
ellie_core = { path = "../core", version = "0.6.0" }
ellie_core = { path = "../core", version = "*" }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ homepage = "https://www.ellie-lang.org"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
ellie_core = { path = "../core", version = "0.6.0" }
ellie_core = { path = "../core", version = "*" }
ellie_tokenizer = { path = "../tokenizer", version = "0.5.0", default-features = false }
enum-as-inner = "0.6.0"
ellie_standard_rules = { path = "./standard_rules", version = "0.1.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/renderer_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ homepage = "https://www.ellie-lang.org"
lazy_static = { version = "1.4.0", optional = true }
clap = { version = "3.1.1", optional = true }
clap_complete = { version = "3.0.0", optional = true }
ellie_core = { path = "../core", version = "0.6.0" }
ellie_core = { path = "../core", version = "*" }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", default-features = false, optional = true }
path-absolutize = { version = "3.0.10", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/src/engine_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ pub static ELLIE_BYTECODE_VERSION: &str = &"0.3.0";
pub static ELLIE_FMT_VERSION: &str = &"0.4.0";
pub static ELLIE_VM_VERSION: &str = &"0.4.0";
pub static ELLIE_BUILD_DATE: &str = &"2023-07-31";
pub static ELLIE_BUILD_GIT_HASH: &str = &"1e8e06c";
pub static ELLIE_BUILD_GIT_HASH: &str = &"a42dba8";
pub static ELLIE_BUILD_GIT_BRANCH: &str = &"main";
2 changes: 1 addition & 1 deletion ellie_engine/tokenizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/behemehal/Ellie-Language"
homepage = "https://www.ellie-lang.org"

[dependencies]
ellie_core = { path = "../core", version = "0.6.0", features = ["compiler_utils"] }
ellie_core = { path = "../core", version = "*", features = ["compiler_utils"] }
enum-as-inner = "0.6.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/behemehal/Ellie-Language"
homepage = "https://www.ellie-lang.org"

[dependencies]
ellie_core = { path = "../core", version = "0.6.0", default-features = false }
ellie_core = { path = "../core", version = "*", default-features = false }
mimalloc = { version="0.1.34", optional = true }

[features]
Expand Down

0 comments on commit b2a3825

Please sign in to comment.