Skip to content

Commit

Permalink
🔥 Remove unused version tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo committed Dec 18, 2023
1 parent 4cb5391 commit eabdebf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/guest-side/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
publish = false

[dependencies]
tairitsu-utils = { path = "../../packages/utils", version = "*" }
tairitsu-utils = { path = "../../packages/utils" }

serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
Expand Down
4 changes: 2 additions & 2 deletions examples/host-side/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"
publish = false

[dependencies]
tairitsu-utils = { path = "../../packages/utils", version = "*" }
tairitsu-vm = { path = "../../packages/vm", version = "*" }
tairitsu-utils = { path = "../../packages/utils" }
tairitsu-vm = { path = "../../packages/vm" }

anyhow = "^1"
bytes = "^1"
Expand Down
2 changes: 1 addition & 1 deletion packages/database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
publish = false

[dependencies]
tairitsu-utils = { path = "../utils", version = "*" }
tairitsu-utils = { path = "../utils" }

anyhow = "^1"
chrono = { version = "^0.4", features = ["serde", "unstable-locales"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"
publish = false

[dependencies]
tairitsu-database = { path = "../database", version = "*" }
tairitsu-utils = { path = "../utils", version = "*" }
tairitsu-database = { path = "../database" }
tairitsu-utils = { path = "../utils" }

anyhow = "^1"
async-std = { version = "^1", features = ["attributes", "tokio1"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
publish = false

[dependencies]
tairitsu-utils = { path = "../utils", version = "*" }
tairitsu-utils = { path = "../utils" }

anyhow = "^1"
bytes = "^1"
Expand Down

0 comments on commit eabdebf

Please sign in to comment.