This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-*- mode: compilation; default-directory: "~/src/drogue-iot/btmesh/" -*- | |
Compilation started at Fri Jul 29 17:18:01 | |
cargo test --all-features | |
Compiling version_check v0.9.4 | |
Compiling proc-macro2 v1.0.39 | |
Compiling unicode-ident v1.0.0 | |
Compiling syn v1.0.95 | |
Compiling typenum v1.15.0 | |
Compiling cfg-if v1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
impl<'a> IntoIterator for &'a ResponsePDU { | |
type Item = &'a ProvisioningPDU; | |
type IntoIter = core::slice::Iter<'a, ProvisioningPDU>; | |
fn into_iter(self) -> core::slice::Iter<'a, ProvisioningPDU> { | |
let slice = match self { | |
ResponsePDU::None => &[], | |
ResponsePDU::One(single) => core::slice::from_ref(single), | |
ResponsePDU::Two(array) => array.as_slice(), | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Provisionee<S> { | |
state: S, | |
} | |
impl Provisionee<Invite> { | |
fn new() -> Self { | |
Provisionee { state: Invite } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error[E0271]: type mismatch resolving `<PrometheusMetrics as Transform<<impl ServiceFactory<ServiceRequest, Response = ServiceResponse, Error = drogue_cloud_service_api::webapp::Error, Config = (), InitError = ()> as ServiceFactory<ServiceRequest>>::Service, ServiceRequest>>::Response == ServiceResponse` | |
--> authentication-service/src/lib.rs:57:14 | |
| | |
57 | .wrap(prom) | |
| ^^^^ expected struct `BoxBody`, found enum `EitherBody` | |
... | |
105 | / app!( | |
106 | | data, | |
107 | | max_json_payload_size, | |
108 | | enable_auth, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling drogue-cloud-http-endpoint v0.9.0 (/home/jim/src/drogue-iot/drogue-cloud/http-endpoint) | |
error[E0433]: failed to resolve: could not find `actix_web` in the list of imported crates | |
--> http-endpoint/src/lib.rs:67:1 | |
| | |
67 | #[get("/")] | |
| ^^^^^^^^^^^ could not find `actix_web` in the list of imported crates | |
| | |
= note: this error originates in the attribute macro `get` (in Nightly builds, run with -Z macro-backtrace for more info) | |
error[E0433]: failed to resolve: could not find `actix_web` in the list of imported crates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mesh/node.c:dev_key_send_call() DevKeySend | |
mesh/model.c:mesh_model_rx() iv_index 00000000 key_aid = 00 | |
mesh/net.c:send_seg() segN 0 segment 0 seg_off 0 | |
mesh/util.c:print_packet() 27562.669 Clr-Net Tx: 007f00000c000100ac00feb01bde46f600000000 | |
mesh/util.c:print_packet() 27562.670 RX: Network [enc] :: 4c809a089cd7ad864ddf5c29b492339a3587af26 | |
mesh/util.c:print_packet() 27562.670 RX: Network [clr] :: 4c7f00000c000100ac00feb01bde46f6 | |
mesh/util.c:print_packet() 27562.940 RX: Network [enc] :: 4c8cc6bd3779c03539eab2dbcfe91167339d17106e | |
mesh/util.c:print_packet() 27562.940 RX: Network [clr] :: 4c7f00019000ac00010078386d48bd5f44 | |
mesh/net.c:msg_in_cache() Add 00ac + 000190 + 0078386d | |
mesh/net.c:packet_received() RX: Network 00ac -> 0001 : TTL 0x7f : IV : 00000000 SEQ 0x000190 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling drogue-cloud-authentication-service v0.9.0 (/home/jim/src/drogue-iot/drogue-cloud/authentication-service) | |
error[E0271]: type mismatch resolving `<HttpAuthentication<BearerAuth, [closure@/home/jim/src/drogue-iot/drogue-cloud/service-common/src/auth/service/mod.rs:44:68: 44:142]> as Transform<actix_web::scope::ScopeService, ServiceRequest>>::Response == ServiceResponse` | |
--> authentication-service/src/lib.rs:53:22 | |
| | |
53 | .wrap(actix_web::middleware::Condition::new($enable_auth, $auth)) | |
| ^^^^ expected enum `EitherBody`, found struct `BoxBody` | |
... | |
87 | app!(data, max_json_payload_size, enable_auth, auth) | |
| ---------------------------------------------------- in this macro invocation | |
| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error: variant is never constructed: `C` | |
--> jukebox/src/speaker.rs:17:5 | |
| | |
17 | C = 261, | |
| ^^^^^^^ | |
| | |
= note: `-D dead-code` implied by `-D warnings` | |
error: variant is never constructed: `D` | |
--> jukebox/src/speaker.rs:18:5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling embassy-macros v0.1.0 (https://github.com/lulf/embassy.git?rev=5bb3c71c597e46267f37ce734866f2db8af21649#5bb3c71c) | |
error[E0425]: cannot find function `__basepri_r` in module `crate::asm::inline` | |
--> /home/jim/.cargo/registry/src/github.com-1ecc6299db9ec823/cortex-m-0.7.3/src/register/basepri.rs:6:15 | |
| | |
6 | call_asm!(__basepri_r() -> u8) | |
| ^^^^^^^^^^^ not found in `crate::asm::inline` | |
error[E0425]: cannot find function `__basepri_w` in module `crate::asm::inline` | |
--> /home/jim/.cargo/registry/src/github.com-1ecc6299db9ec823/cortex-m-0.7.3/src/register/basepri.rs:22:19 | |
| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[jim@localhost reqwest-wasm-example]$ npm install | |
npm WARN reqwest-wasm-example No repository field. | |
npm WARN reqwest-wasm-example No license field. | |
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents): | |
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) | |
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack-chokidar2/node_modules/fsevents): | |
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) | |
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/webpack-dev-server/node_modules/fsevents): | |
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) |
NewerOlder