mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-14 20:01:21 +00:00
41 lines
1.4 KiB
TOML
41 lines
1.4 KiB
TOML
|
[package]
|
||
|
authors = ["Doug Anderson <douganderson444@peerpiper.io>"]
|
||
|
description = "Example use of the WebRTC transport in a browser wasm environment"
|
||
|
edition = "2021"
|
||
|
license = "MIT"
|
||
|
name = "browser-webrtc-example"
|
||
|
publish = false
|
||
|
repository = "https://github.com/libp2p/rust-libp2p"
|
||
|
rust-version = { workspace = true }
|
||
|
version = "0.1.0"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.72"
|
||
|
env_logger = "0.10"
|
||
|
futures = "0.3.28"
|
||
|
log = "0.4"
|
||
|
rand = "0.8"
|
||
|
|
||
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||
|
axum = "0.6.19"
|
||
|
libp2p = { path = "../../libp2p", features = ["ed25519", "macros", "ping", "wasm-bindgen", "tokio"] }
|
||
|
libp2p-webrtc = { workspace = true, features = ["tokio"] }
|
||
|
rust-embed = { version = "6.8.1", features = ["include-exclude", "interpolate-folder-path"] }
|
||
|
tokio = { version = "1.29", features = ["macros", "net", "rt", "signal"] }
|
||
|
tokio-util = { version = "0.7", features = ["compat"] }
|
||
|
tower = "0.4"
|
||
|
tower-http = { version = "0.4.0", features = ["cors"] }
|
||
|
mime_guess = "2.0.4"
|
||
|
|
||
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||
|
js-sys = "0.3.64"
|
||
|
libp2p = { path = "../../libp2p", features = ["ed25519", "macros", "ping", "wasm-bindgen"] }
|
||
|
libp2p-webrtc-websys = { workspace = true }
|
||
|
wasm-bindgen = "0.2.84"
|
||
|
wasm-bindgen-futures = "0.4.37"
|
||
|
wasm-logger = { version = "0.2.0" }
|
||
|
web-sys = { version = "0.3", features = ['Document', 'Element', 'HtmlElement', 'Node', 'Response', 'Window'] }
|