Fixing dependency rev
This commit is contained in:
parent
cf1d5ed533
commit
05210fc1e7
|
@ -200,7 +200,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "derive_miniconf"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/quartiq/miniconf.git?branch=feature/client-integration#46aa4791e2874dbce6f75a0db15f636a4e7a134c"
|
||||
source = "git+https://github.com/quartiq/miniconf.git?rev=6c19ba2#6c19ba208eb426377ff6e09416fcabdf4fd3021d"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -413,7 +413,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "miniconf"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/quartiq/miniconf.git?branch=feature/client-integration#46aa4791e2874dbce6f75a0db15f636a4e7a134c"
|
||||
source = "git+https://github.com/quartiq/miniconf.git?rev=6c19ba2#6c19ba208eb426377ff6e09416fcabdf4fd3021d"
|
||||
dependencies = [
|
||||
"derive_miniconf",
|
||||
"heapless 0.7.3",
|
||||
|
|
|
@ -76,7 +76,7 @@ branch = "feature/assume-init"
|
|||
|
||||
[patch.crates-io.miniconf]
|
||||
git = "https://github.com/quartiq/miniconf.git"
|
||||
branch = "feature/client-integration"
|
||||
rev = "6c19ba2"
|
||||
|
||||
[dependencies.smoltcp-nal]
|
||||
git = "https://github.com/quartiq/smoltcp-nal.git"
|
||||
|
|
|
@ -23,7 +23,7 @@ use telemetry::TelemetryClient;
|
|||
|
||||
use core::fmt::Write;
|
||||
use heapless::String;
|
||||
use miniconf::{Miniconf, MiniconfClient};
|
||||
use miniconf::Miniconf;
|
||||
use serde::Serialize;
|
||||
use smoltcp_nal::embedded_nal::SocketAddr;
|
||||
|
||||
|
@ -46,7 +46,7 @@ pub enum NetworkState {
|
|||
}
|
||||
/// A structure of Stabilizer's default network users.
|
||||
pub struct NetworkUsers<S: Default + Miniconf, T: Serialize> {
|
||||
pub miniconf: MiniconfClient<S, NetworkReference>,
|
||||
pub miniconf: miniconf::MqttClient<S, NetworkReference>,
|
||||
pub processor: NetworkProcessor,
|
||||
stream: DataStream,
|
||||
generator: Option<FrameGenerator>,
|
||||
|
@ -90,7 +90,7 @@ where
|
|||
|
||||
let prefix = get_device_prefix(app, mac);
|
||||
|
||||
let settings = MiniconfClient::new(
|
||||
let settings = miniconf::MqttClient::new(
|
||||
stack_manager.acquire_stack(),
|
||||
&get_client_id(app, "settings", mac),
|
||||
&prefix,
|
||||
|
|
Loading…
Reference in New Issue