Skip to content

Commit

Permalink
fix(bootstrap): make it wasm compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin committed Dec 4, 2024
1 parent 7f1326d commit d53f094
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 201 deletions.
185 changes: 7 additions & 178 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions ant-bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,21 @@ dirs-next = "~2.0.0"
fs2 = "0.4.3"
futures = "0.3.30"
libp2p = { version = "0.54.1", features = ["serde"] }
reqwest = { version = "0.12.2", features = ["json"] }
reqwest = { version = "0.12.2", default-features = false, features = [
"rustls-tls-manual-roots",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.8.1"
thiserror = "1.0"
tokio = { version = "1.0", features = ["full", "sync"] }
tokio = { version = "1.0", features = ["time"] }
tracing = "0.1"
url = "2.4.0"

[dev-dependencies]
wiremock = "0.5"
tokio = { version = "1.0", features = ["full", "test-util"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasmtimer = "0.2.0"
Loading

0 comments on commit d53f094

Please sign in to comment.