14 releases

Uses old Rust 2015

0.4.3 Feb 19, 2018
0.4.2 Nov 24, 2017
0.4.1 Oct 24, 2017
0.3.4 May 31, 2017
0.1.0 Feb 12, 2016

#722 in Asynchronous

Download history 19/week @ 2023-12-04 35/week @ 2023-12-11 44/week @ 2023-12-18 26/week @ 2023-12-25 2/week @ 2024-01-01 65/week @ 2024-01-08 37/week @ 2024-01-15 22/week @ 2024-01-22 22/week @ 2024-01-29 22/week @ 2024-02-05 25/week @ 2024-02-12 67/week @ 2024-02-19 86/week @ 2024-02-26 70/week @ 2024-03-04 76/week @ 2024-03-11 74/week @ 2024-03-18

307 downloads per month
Used in 13 crates (11 directly)

MIT/Apache

46KB
803 lines

Abstract Name Service

Status: Beta

Documentation | Github | Crate

This rust crate provides just abstract traits which may be used to build interoperable implementations of name dicovery.

We want abstract_ns to have implementations not only for DNS-based name discovery but also Zookeeper, Eureka, Etcd, Consul, and whatever other thing you might imagine. All of them easily configured and interchangeable.

Features:

  • Defines what is a name and what is a result of service discovery
  • Uses futures-rs for asynchronous stuff
  • Has interface to receive updates (name changes)
  • Allows some kind of name service routing, i.e. has a way to specify different resolvers for different names, for example: serve *.consul from local consul, other names from conventional DNS servers.

This repository also contains the following crates:

  • ns-std-threaded a name resolution implementation that uses stdlib resolver running in a thread pool
  • ns-dns-tokio an pure-rust implementation that uses domain crate to resolve domains asynchronously in tokio-core main loop

Note: abstract-ns v0.2 is very different product than v0.1

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~415–610KB