[doc] Core is now C++

pull/35676/head
Yash Tibrewal 10 months ago
parent ba2f74a84c
commit 346d2e4ed6
  1. 48
      README.md

@ -27,7 +27,8 @@ For instructions on how to use the language-specific gRPC runtime for a project,
please refer to these documents please refer to these documents
- [C++](src/cpp): follow the instructions under the `src/cpp` directory - [C++](src/cpp): follow the instructions under the `src/cpp` directory
- [C#/.NET](https://github.com/grpc/grpc-dotnet): NuGet packages `Grpc.Net.Client`, `Grpc.AspNetCore.Server` - [C#/.NET](https://github.com/grpc/grpc-dotnet): NuGet packages
`Grpc.Net.Client`, `Grpc.AspNetCore.Server`
- [Dart](https://github.com/grpc/grpc-dart): pub package `grpc` - [Dart](https://github.com/grpc/grpc-dart): pub package `grpc`
- [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc` - [Go](https://github.com/grpc/grpc-go): `go get google.golang.org/grpc`
- [Java](https://github.com/grpc/grpc-java): Use JARs from Maven Central - [Java](https://github.com/grpc/grpc-java): Use JARs from Maven Central
@ -66,8 +67,7 @@ gRPC.
## Performance ## Performance
See the See the [Performance dashboard](https://grafana-dot-grpc-testing.appspot.com/)
[Performance dashboard](https://grafana-dot-grpc-testing.appspot.com/)
for performance numbers of master branch daily builds. for performance numbers of master branch daily builds.
## Concepts ## Concepts
@ -77,28 +77,28 @@ See [gRPC Concepts](CONCEPTS.md)
## About This Repository ## About This Repository
This repository contains source code for gRPC libraries implemented in multiple This repository contains source code for gRPC libraries implemented in multiple
languages written on top of a shared C core library [src/core](src/core). languages written on top of a shared C++ core library [src/core](src/core).
Libraries in different languages may be in various states of development. We are Libraries in different languages may be in various states of development. We are
seeking contributions for all of these libraries: seeking contributions for all of these libraries:
| Language | Source | Language | Source
| ----------------------- | ---------------------------------- | ------------------------- | ----------------------------------
| Shared C [core library] | [src/core](src/core) | Shared C++ [core library] | [src/core](src/core)
| C++ | [src/cpp](src/cpp) | C++ | [src/cpp](src/cpp)
| Ruby | [src/ruby](src/ruby) | Ruby | [src/ruby](src/ruby)
| Python | [src/python](src/python) | Python | [src/python](src/python)
| PHP | [src/php](src/php) | PHP | [src/php](src/php)
| C# (core library based) | [src/csharp](src/csharp) | C# (core library based) | [src/csharp](src/csharp)
| Objective-C | [src/objective-c](src/objective-c) | Objective-C | [src/objective-c](src/objective-c)
| Language | Source repo | Language | Source repo
| -------------------- | -------------------------------------------------- | -------------------- | --------------------------------------------------
| Java | [grpc-java](https://github.com/grpc/grpc-java) | Java | [grpc-java](https://github.com/grpc/grpc-java)
| Kotlin | [grpc-kotlin](https://github.com/grpc/grpc-kotlin) | Kotlin | [grpc-kotlin](https://github.com/grpc/grpc-kotlin)
| Go | [grpc-go](https://github.com/grpc/grpc-go) | Go | [grpc-go](https://github.com/grpc/grpc-go)
| NodeJS | [grpc-node](https://github.com/grpc/grpc-node) | NodeJS | [grpc-node](https://github.com/grpc/grpc-node)
| WebJS | [grpc-web](https://github.com/grpc/grpc-web) | WebJS | [grpc-web](https://github.com/grpc/grpc-web)
| Dart | [grpc-dart](https://github.com/grpc/grpc-dart) | Dart | [grpc-dart](https://github.com/grpc/grpc-dart)
| .NET (pure C# impl.) | [grpc-dotnet](https://github.com/grpc/grpc-dotnet) | .NET (pure C# impl.) | [grpc-dotnet](https://github.com/grpc/grpc-dotnet)
| Swift | [grpc-swift](https://github.com/grpc/grpc-swift) | Swift | [grpc-swift](https://github.com/grpc/grpc-swift)

Loading…
Cancel
Save