| [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" | |
| [package.metadata.release] | |
| release = false | |
| [lib] | |
| crate-type = ["cdylib"] | |
| [dependencies] | |
| anyhow = "1.0.86" | |
| futures = { workspace = true } | |
| rand = "0.8" | |
| tracing = { workspace = true } | |
| tracing-subscriber = { workspace = true, features = ["env-filter"] } | |
| [target.'cfg(not(target_arch = "wasm32"))'.dependencies] | |
| axum = "0.7.5" | |
| libp2p = { path = "../../libp2p", features = [ "ed25519", "macros", "ping", "tokio"] } | |
| libp2p-webrtc = { workspace = true, features = ["tokio"] } | |
| rust-embed = { version = "8.4.0", features = ["include-exclude", "interpolate-folder-path"] } | |
| tokio = { workspace = true, features = ["macros", "net", "rt", "signal"] } | |
| tokio-util = { version = "0.7", features = ["compat"] } | |
| tower = "0.4" | |
| tower-http = { version = "0.5.2", features = ["cors"] } | |
| mime_guess = "2.0.4" | |
| [target.'cfg(target_arch = "wasm32")'.dependencies] | |
| js-sys = "0.3.69" | |
| libp2p = { path = "../../libp2p", features = [ "ed25519", "macros", "ping", "wasm-bindgen"] } | |
| libp2p-webrtc-websys = { workspace = true } | |
| tracing-wasm = "0.2.1" | |
| wasm-bindgen = "0.2.90" | |
| wasm-bindgen-futures = "0.4.42" | |
| web-sys = { version = "0.3", features = ['Document', 'Element', 'HtmlElement', 'Node', 'Response', 'Window'] } | |
| [lints] | |
| workspace = true | |