Skip to content

Commit

Permalink
Change version to *
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmtcn123 committed Jul 31, 2023
1 parent b2a3825 commit 5db689d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions ellie_engine/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ellie_engine"
description = "Why ellie? Ellie is a type-safe programing language that runs on embedded and sandboxed environments."
version = "1.0.2-alpha"
version = "1.0.3-alpha"
authors = ["Ahmetcan Aksu <ahmetcanaksu@behemehal.org>", "Behemehal <info@behemehal.org>"]
edition = "2021"
license-file = "../LICENSE"
Expand All @@ -17,11 +17,11 @@ serde_json = { version = "1.0", default-features = false, features = ["alloc"],
path-absolutize = { version = "3.0.10", optional = true }
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 }
ellie_bytecode = { path = "bytecode", version = "0.3.0", optional = true }
ellie_vm = { path = "vm", version = "0.4.0", optional = true }
ellie_fmt = { path = "fmt", version = "0.4.0", optional = true }
ellie_tokenizer = { path = "tokenizer", version = "*", default-features = false, optional = true }
ellie_parser = { path = "parser", version = "*", default-features = false, optional = true }
ellie_bytecode = { path = "bytecode", version = "*", optional = true }
ellie_vm = { path = "vm", version = "*", optional = true }
ellie_fmt = { path = "fmt", version = "*", optional = true }
ellie_renderer_utils = { path = "renderer_utils", version = "0.2.0", optional = true, default-features = false }

[features]
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/bytecode/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ homepage = "https://www.ellie-lang.org"

[dependencies]
ellie_core = { path = "../core", version = "*" }
ellie_parser = { path = "../parser", version = "0.6.0" }
ellie_parser = { path = "../parser", version = "*" }
enum-as-inner = "0.6.0"
lazy_static = "1.4.0"

Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/fmt/Cargo.toml
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_tokenizer = { path = "../tokenizer", version = "0.5.0" }
ellie_tokenizer = { path = "../tokenizer", version = "*" }
ellie_core = { path = "../core", version = "*" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/parser/Cargo.toml
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_core = { path = "../core", version = "*" }
ellie_tokenizer = { path = "../tokenizer", version = "0.5.0", default-features = false }
ellie_tokenizer = { path = "../tokenizer", version = "*", default-features = false }
enum-as-inner = "0.6.0"
ellie_standard_rules = { path = "./standard_rules", version = "0.1.0", optional = true }

Expand Down

0 comments on commit 5db689d

Please sign in to comment.