Skip to content

Commit a5204f4

Browse files
committed
Fix bin folder and pin bytes
1 parent 4875f4a commit a5204f4

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ crate-type = ["lib", "cdylib"]
2424

2525
[[bin]]
2626
name = "rs3"
27-
path = "src/rs3.rs"
27+
path = "bin/rs3.rs"
2828
required-features = ["rs3"]
2929

3030
[[bin]]
3131
name = "osrs"
32-
path = "src/osrs.rs"
32+
path = "bin/osrs.rs"
3333
required-features = ["osrs"]
3434

3535
[[bin]]
3636
name = "legacy"
37-
path = "src/legacy.rs"
37+
path = "bin/legacy.rs"
3838
required-features = ["legacy"]
3939

4040
[dependencies]
File renamed without changes.

src/osrs.rs renamed to bin/osrs.rs

File renamed without changes.

src/rs3.rs renamed to bin/rs3.rs

File renamed without changes.

rs3cache_backend/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ edition = "2021"
88
rs3cache_macros = { path = "../rs3cache_macros", version = "0.1.0" , optional = true}
99
rs3cache_utils = { path = "../rs3cache_utils", version = "0.1.0" }
1010

11-
bytes = "1.1.0"
11+
# upgrading bytes gives method ambiguities which fucks up everything
12+
bytes = "=1.9.0"
1213
bzip2-rs = "0.1.2"
1314
clap = { version = "4.1.8", features = ["derive", "env"] }
1415
itertools = "0.10.3"

0 commit comments

Comments
 (0)