Skip to content

Commit 8ca836e

Browse files
committed
fix: Fix cli crate build.rs path
1 parent 1fad95e commit 8ca836e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.lock

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

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "devrc"
33
edition = "2018"
4-
version = "0.5.0"
4+
version = "0.5.1"
55

66
license = "MIT"
77

@@ -17,7 +17,7 @@ homepage = "https://github.com/devrc-hub/devrc"
1717

1818
include = ["src/**/*", "Cargo.toml", "../LICENSE", "README.md", "../CHANGELOG.md", "./build.rs"]
1919

20-
build = "build.rs"
20+
build = "./build.rs"
2121

2222
[dependencies]
2323
env_logger = "0.10.0"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "devrc-core"
33
edition = "2018"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
description = "Core devrc components"
66

77
license = "MIT"

plugins/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "devrc-plugins"
33
edition = "2018"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
description = "Library for creating plugins for devrc"
66

77
license = "MIT"
@@ -25,7 +25,7 @@ log = "0.4.17"
2525
libloading = "0.8.0"
2626
anyhow = "1.0.62"
2727
indexmap = { version="1.9.1", features = ["serde-1"] }
28-
devrc-core = { path = "../core", version = "0.5.0"}
28+
devrc-core = { path = "../core", version = "0.5.1"}
2929

3030

3131
[build-dependencies]

0 commit comments

Comments
 (0)