Skip to content

Commit

Permalink
added version to internal dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Starke committed Jun 29, 2021
1 parent 915d745 commit ff55727
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ license-file = "LICENSE"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "libpefile"

[dependencies]
from_bytes = { path = "from_bytes" }
from_bytes_derive = { path = "from_bytes_derive" }
packed_size = { path = "packed_size" }
packed_size_derive = { path = "packed_size_derive" }
from_bytes = { path = "from_bytes", version = "0.1.0" }
from_bytes_derive = { path = "from_bytes_derive", version = "0.1.0" }
packed_size = { path = "packed_size", version = "0.1.0" }
packed_size_derive = { path = "packed_size_derive", version = "0.1.0" }
log = "0.4"
memmap = "0.7.0"
packed_struct = { version = "0.5", features=["byte_types_256"] }
Expand Down

0 comments on commit ff55727

Please sign in to comment.