gsof_protocol 0.1.23

Software to collect data generated by sources who provide GSOF messages (Trimble)
Documentation
1
2
3
4
5
6
7
8
9
10
11
use gsof_protocol::protocol::tables::read_gsof_file_protocol;
use tracing::info;
use tracing::{span, Level};

#[tokio::main]
pub async fn main() {
    tracing_subscriber::fmt::init();
    let _span_main = span!(Level::TRACE, "main");
    let jsondata = read_gsof_file_protocol().unwrap();
    info!("{:#?}", jsondata);
}