Skip to content

Commit

Permalink
fix(bpsec): cleanup of bpsec tests, removed hex-literal crate
Browse files Browse the repository at this point in the history
  • Loading branch information
gh0st42 committed Dec 16, 2024
1 parent 5126cf8 commit ae66fd2
Show file tree
Hide file tree
Showing 3 changed files with 183 additions and 188 deletions.
19 changes: 9 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,21 @@ harness = false
default = ["binary-build"]
binary-build = ["instant"]
benchmark-helpers = ["instant"]
bpsec = ["dep:sha2", "dep:hmac", "dep:hex-literal"]
bpsec = ["dep:sha2", "dep:hmac"]

[dependencies]
humantime = "2.1.0"
serde = { version = "1.0.193", features = ["derive"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_cbor = "0.11.1"
serde_json = "1.0.61"
serde_bytes = "0.11.5"
crc = "3.0.1"
thiserror = "1.0.23"
bitflags = "2.2.1"
serde_json = "1.0.133"
serde_bytes = "0.11.15"
crc = "3.2.1"
thiserror = "2.0.7"
bitflags = "2.6.0"

# bpsec dependencies
sha2 = { version ="0.10.6", optional = true }
hmac = { version ="0.12.1", optional = true }
hex-literal = { version ="0.3.4", optional = true }
sha2 = { version = "0.10.6", optional = true }
hmac = { version = "0.12.1", optional = true }

# non wasm config

Expand Down
Loading

0 comments on commit ae66fd2

Please sign in to comment.