Update README
Core developers, badges, module list were not up to date
This commit is contained in:
parent
18dc233c9b
commit
1152012bb0
16
README.md
16
README.md
|
@ -5,9 +5,9 @@
|
||||||
<h3 align="center">The Nim implementation of the libp2p Networking Stack.</h3>
|
<h3 align="center">The Nim implementation of the libp2p Networking Stack.</h3>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://travis-ci.org/status-im/nim-libp2p"><img src="https://travis-ci.org/status-im/nim-libp2p.svg?branch=master" /></a>
|
<a href="https://github.com/status-im/nim-libp2p/actions"><img src="https://github.com/status-im/nim-libp2p/actions/workflows/ci.yml/badge.svg" /></a>
|
||||||
<a href="https://ci.appveyor.com/project/nimbus/nim-libp2p/branch/master"><img src="https://ci.appveyor.com/api/projects/status/pqgif5bcie6cp3wi/branch/master?svg=true" /></a>
|
<a href="https://codecov.io/gh/status-im/nim-libp2p"><img src="https://codecov.io/gh/status-im/nim-libp2p/branch/master/graph/badge.svg?token=UR5JRQ249W"/></a>
|
||||||
<a href="https://dev.azure.com/nimbus-dev/nim-libp2p/_build?definitionId=5&branchName=master"><img src="https://img.shields.io/azure-devops/build/nimbus-dev/dc5eed24-3f6c-4c06-8466-3d060abd6c8b/5/master?label=Azure%20%28Linux%2064-bit%2C%20Windows%2032-bit%2F64-bit%2C%20MacOS%2064-bit%29" /></a>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
@ -21,9 +21,9 @@
|
||||||
An implementation of [libp2p](https://libp2p.io/) in Nim.
|
An implementation of [libp2p](https://libp2p.io/) in Nim.
|
||||||
|
|
||||||
## Project Status
|
## Project Status
|
||||||
libp2p is now used in production by a few projects at [status](https://github.com/status-im), including [nimbus](https://github.com/status-im/nimbus-eth2).
|
libp2p is used in production by a few projects at [Status](https://github.com/status-im), including [Nimbus](https://github.com/status-im/nimbus-eth2).
|
||||||
|
|
||||||
While far from complete, currently available componets are fairly stable.
|
While far from complete, currently available components are stable.
|
||||||
|
|
||||||
Check our [examples folder](/examples) to get started!
|
Check our [examples folder](/examples) to get started!
|
||||||
|
|
||||||
|
@ -108,9 +108,12 @@ List of packages currently in existence for nim-libp2p:
|
||||||
|
|
||||||
#### Transports
|
#### Transports
|
||||||
- [libp2p-tcp](https://github.com/status-im/nim-libp2p/blob/master/libp2p/transports/tcptransport.nim)
|
- [libp2p-tcp](https://github.com/status-im/nim-libp2p/blob/master/libp2p/transports/tcptransport.nim)
|
||||||
|
- [libp2p-ws](https://github.com/status-im/nim-libp2p/blob/master/libp2p/transports/wstransport.nim)
|
||||||
|
|
||||||
#### Secure Channels
|
#### Secure Channels
|
||||||
- [libp2p-secio](https://github.com/status-im/nim-libp2p/blob/master/libp2p/protocols/secure/secio.nim)
|
- [libp2p-secio](https://github.com/status-im/nim-libp2p/blob/master/libp2p/protocols/secure/secio.nim)
|
||||||
|
- [libp2p-noise](https://github.com/status-im/nim-libp2p/blob/master/libp2p/protocols/secure/noise.nim)
|
||||||
|
- [libp2p-plaintext](https://github.com/status-im/nim-libp2p/blob/master/libp2p/protocols/secure/plaintext.nim)
|
||||||
|
|
||||||
#### Stream Multiplexers
|
#### Stream Multiplexers
|
||||||
- [libp2p-mplex](https://github.com/status-im/nim-libp2p/blob/master/libp2p/muxers/mplex/mplex.nim)
|
- [libp2p-mplex](https://github.com/status-im/nim-libp2p/blob/master/libp2p/muxers/mplex/mplex.nim)
|
||||||
|
@ -133,7 +136,6 @@ Packages that exist in the original libp2p specs and are under active developmen
|
||||||
- libp2p-daemon
|
- libp2p-daemon
|
||||||
- libp2p-webrtc-direct
|
- libp2p-webrtc-direct
|
||||||
- libp2p-webrtc-star
|
- libp2p-webrtc-star
|
||||||
- libp2p-websockets
|
|
||||||
- libp2p-spdy
|
- libp2p-spdy
|
||||||
- libp2p-bootstrap
|
- libp2p-bootstrap
|
||||||
- libp2p-kad-dht
|
- libp2p-kad-dht
|
||||||
|
@ -176,7 +178,7 @@ The libp2p implementation in Nim is a work in progress. We welcome contributors
|
||||||
The code follows the [Status Nim Style Guide](https://status-im.github.io/nim-style-guide/).
|
The code follows the [Status Nim Style Guide](https://status-im.github.io/nim-style-guide/).
|
||||||
|
|
||||||
### Core Developers
|
### Core Developers
|
||||||
[@cheatfate](https://github.com/cheatfate), [Dmitriy Ryajov](https://github.com/dryajov), [Giovanni Petrantoni](https://github.com/sinkingsugar), [Zahary Karadjov](https://github.com/zah)
|
[@cheatfate](https://github.com/cheatfate), [Dmitriy Ryajov](https://github.com/dryajov), [Tanguy](https://github.com/Menduist), [Zahary Karadjov](https://github.com/zah)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue