Skip to content

Commit

Permalink
Fix compilation error caused by the roaring crate (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdulmth committed Feb 19, 2024
1 parent 9904aa5 commit 6127d5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ version = "1.0.0"
edition = "2021"

[dependencies]
identity_iota = {version = "1.1.0", features = ["memstore"]}
identity_iota = { version = "1.1.0", features = ["memstore"] }
iota-sdk = { version = "1.0.2", default-features = true, features = ["tls", "client", "stronghold"] }
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.62"
Expand Down
2 changes: 1 addition & 1 deletion identity_credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ indexmap = { version = "2.0", default-features = false, features = ["std", "serd
itertools = { version = "0.11", default-features = false, features = ["use_std"], optional = true }
once_cell = { version = "1.18", default-features = false, features = ["std"] }
reqwest = { version = "0.11", default-features = false, features = ["default-tls", "json", "stream"], optional = true }
roaring = { version = "0.10", default-features = false, optional = true }
roaring = { version = "0.10", default-features = false, features = ["std"], optional = true }
sd-jwt-payload = { version = "0.2.0", default-features = false, features = ["sha"], optional = true }
serde.workspace = true
serde-aux = { version = "4.3.1", default-features = false, optional = true }
Expand Down

0 comments on commit 6127d5d

Please sign in to comment.