Crates.io | dscfg-server |
lib.rs | dscfg-server |
version | 0.1.0 |
source | src |
created_at | 2018-12-03 17:10:08.703001 |
updated_at | 2018-12-03 17:10:08.703001 |
description | Server-side implementation of dynamic shared configuration |
homepage | https://github.com/Kixunil/dscfg |
repository | https://github.com/Kixunil/dscfg |
max_upload_size | |
id | 99873 |
size | 16,046 |
Server implementation for dynamic shared config.
This crate implements server side of dscfg
protocol. It exposes simple functions to listen for incoming clients using either default length delimited encoding or a custom encoding.
The crate doesn't implement storing of the configuration but defines Storage
trait used for implementing it instead. Thanks to it, the code is more flexible. If you don't want to implement it yourself, but just use sensible default, you may use dscfg-cached_file_storage
crate, which provides a basic implementation.
All this being said, if you're looking for a dscfg server, you might want to use dscfg-unix_server
, which implements everything required to get dscfg
running.