diff options
| -rw-r--r-- | Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -12,10 +12,10 @@ categories = ["embedded", "config", "encoding", "network-programming", "parser-i exclude = [".vscode"] [dependencies] -hex = "*" -tokio-util = "*" -structdiff = { version = "*", features = ["debug_diffs"] } -chrono = "*" +hex = "0.4" +tokio-util = "0.7" +structdiff = { version = "0.7", features = ["debug_diffs"] } +chrono = "0.4" # Crypto functions needed for packet signatures and (en|de)cryption sha2 = { version = "0.10", default-features = false } @@ -31,7 +31,7 @@ pcap-file = { version = "2.0.0", optional = true } tokio = { version = "1.20.1", features = ["macros", "rt-multi-thread", "rt", "fs", "full"], optional = true } # Serde stuff for loading config files and saving packet dissections -serde = { version = "*", features = ["derive", "rc"]} +serde = { version = "1.0", features = ["derive", "rc"]} color-eyre = "0.6.5" pretty_env_logger = "0.5.0" clap = { version = "4.5.51", features = ["derive"] } |
