Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions mmrs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@
All notable changes to the `mmrs` crate will be documented in this file.

## [Unreleased]

### Added

- Public model types for the ModemManager domain under `mmrs::models`:
`Modem`, `ModemState`, `AccessTechnology`, `Sim`, `SimLockState`,
`Bearer`, `BearerConfig`, `BearerStats`, `Ip4Config`, `IpType`,
`ModemError`, and the `Result` alias. All public structs and enums are
`#[non_exhaustive]`; `BearerConfig` ships with `with_*` builder methods.

1 change: 1 addition & 0 deletions mmrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ categories = ["api-bindings", "asynchronous"]

[dependencies]
log.workspace = true
thiserror.workspace = true
zbus.workspace = true
zvariant.workspace = true
6 changes: 6 additions & 0 deletions mmrs/src/api/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
//! Public-facing API surface for the `mmrs` crate.
//!
//! Currently exposes the [`models`] sub-module; higher-level helpers
//! (entry-point `ModemManager` struct, builders, etc.) will land here as
//! the crate grows.

pub mod models;
Loading