| Crates.io | ntrip-client |
| lib.rs | ntrip-client |
| version | 0.0.1 |
| created_at | 2025-05-25 14:21:55.260714+00 |
| updated_at | 2025-05-25 14:21:55.260714+00 |
| description | NTRIP client |
| homepage | https://github.com/rtk-rs |
| repository | https://github.com/rtk-rs/ntrip-client |
| max_upload_size | |
| id | 1688400 |
| size | 74,266 |
NTRIP client used by all our applications that require RTCM messaging (downlink), through NTRIP connection.
ntrip-client currently uses tokio as the multi-threading backend.
ntrip-client = "0.0.1"
let mut client = NTRIPClient::new("caster.centipede.fr", 2101, "ENSMM")
.with_credentials("centipede", "centipede");
// deploy using 'tokio' framework
client.run()
.await
.unwrap_or_else(|e| {
panic!("Failed to deploy NTRIP client: {}", e);
});
This library is part of the RTK-rs framework which is delivered under the Mozilla V2 Public license.