Skip to content

Commit 649b1a0

Browse files
committed
Specify crate version of local dependency
1 parent 1835779 commit 649b1a0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

aiscript-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ path = "src/main.rs"
1919
required-features = ["ai_test"]
2020

2121
[dependencies]
22-
aiscript-vm = { path = "../aiscript-vm" }
23-
aiscript-runtime = { path = "../aiscript-runtime" }
22+
aiscript-vm = { path = "../aiscript-vm", version = "0.1.0" }
23+
aiscript-runtime = { path = "../aiscript-runtime", version = "0.1.0" }
2424
clap = { version = "4.5", features = ["derive"] }
2525
tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros"] }
2626
dotenv = "0.15.0"

aiscript-directive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ keywords.workspace = true
1111
categories.workspace = true
1212

1313
[dependencies]
14-
aiscript-lexer = { path = "../aiscript-lexer" }
14+
aiscript-lexer = { path = "../aiscript-lexer", version = "0.1.0" }
1515
serde_json = "1.0"

aiscript-runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ keywords.workspace = true
1111
categories.workspace = true
1212

1313
[dependencies]
14-
aiscript-lexer = { path = "../aiscript-lexer" }
15-
aiscript-directive = { path = "../aiscript-directive" }
16-
aiscript-vm = { path = "../aiscript-vm" }
14+
aiscript-lexer = { path = "../aiscript-lexer", version = "0.1.0" }
15+
aiscript-directive = { path = "../aiscript-directive", version = "0.1.0" }
16+
aiscript-vm = { path = "../aiscript-vm", version = "0.1.0" }
1717
hyper = "1.4.1"
1818
hyper-util = "0.1.7"
1919
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"] }

aiscript-vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ keywords.workspace = true
1111
categories.workspace = true
1212

1313
[dependencies]
14-
aiscript-lexer = { path = "../aiscript-lexer" }
15-
aiscript-directive = { path = "../aiscript-directive" }
14+
aiscript-lexer = { path = "../aiscript-lexer", version = "0.1.0" }
15+
aiscript-directive = { path = "../aiscript-directive", version = "0.1.0" }
1616
ahash = "0.8"
1717
gc-arena = { git = "https://github.com/kyren/gc-arena", rev = "3dbc6c4263700312ef63ceee3f02943b38828130", features = [
1818
"allocator-api2",

0 commit comments

Comments
 (0)