Skip to content

Commit

Permalink
chore: updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gh0st42 committed Nov 24, 2023
1 parent 04bbb3a commit 305cab4
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "bp7"
version = "0.10.5" # managed by release.sh
version = "0.10.5" # managed by release.sh
authors = ["Lars Baumgaertner <[email protected]>"]
edition = "2018"
description = "Rust implementation of dtn Bundle Protocol Version 7 ([RFC 9171]"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtn7/bp7-rs"
categories = ["encoding"]
repository = "https://github.com/dtn7/bp7-rs"
categories = ["encoding"]
readme = "README.md"

[profile.release]
Expand All @@ -22,8 +22,8 @@ name = "bp7"
crate-type = ["staticlib", "cdylib", "rlib"]

[dev-dependencies]
criterion = "0.3.4"
test-case = { version = "1.2.3"}
criterion = "0.5.1"
test-case = { version = "3.3.1" }

[[bench]]
name = "benchmark"
Expand All @@ -37,7 +37,7 @@ benchmark-helpers = ["instant"]

[dependencies]
humantime = "2.1.0"
serde = { version = "1.0.123", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_cbor = "0.11.1"
serde_json = "1.0.61"
serde_bytes = "0.11.5"
Expand All @@ -49,12 +49,11 @@ bitflags = "2.2.1"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
nanorand = { version = "0.7.0", default-features = true }
instant = { version = "0.1.9", features = [ "now" ], optional = true }
instant = { version = "0.1.9", features = ["now"], optional = true }

# wasm specific

[target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = "0.4.20"
nanorand = { version = "0.7.0", features = ["getrandom"] }
instant = { version = "0.1.9", features = [ "stdweb", "now" ], optional = true }

instant = { version = "0.1.9", features = ["stdweb", "now"], optional = true }

0 comments on commit 305cab4

Please sign in to comment.