From cb88e2eae06deceb9e867d1d6c747aa54c8c2c55 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Fri, 15 Sep 2023 11:16:51 +0200 Subject: [PATCH] Rename (proper spelling). done as part of CURA-11035 --- Cargo.toml | 6 +++--- README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c921011..ad6f200 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] -name = "curaengine_grpc_defintions" +name = "curaengine_grpc_definitions" version = "0.0.1" authors = ["Casper "] description = "CuraEngine gRPC definitions" -repository = "https://github.com/Ultimaker/curaengine_grpc_defintions" +repository = "https://github.com/Ultimaker/curaengine_grpc_definitions" readme = "README.md" license = "MIT" edition = "2021" @@ -11,7 +11,7 @@ build = "rs/build.rs" [lib] -name="curaengine_grpc_defintions" +name="curaengine_grpc_definitions" path = "rs/lib.rs" crate-type = ["lib"] diff --git a/README.md b/README.md index 76674b5..371a4cf 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ asio_grpc_protobuf_generate(PROTOS "${GRPC_PROTOS}" Python ```bash - pip install git+https://github.com/Ultimaker/CuraEngine_grpc_defintions.git + pip install git+https://github.com/Ultimaker/CuraEngine_grpc_definitions.git ``` ```python @@ -81,11 +81,11 @@ import CuraEngineGRPC.cura_pb2 as cura_pb
Rust - Required dependencies before the gRPC defintions can be used are: [`protoc`, `protobuf`](https://github.com/hyperium/tonic#dependencies). + Required dependencies before the gRPC definitions can be used are: [`protoc`, `protobuf`](https://github.com/hyperium/tonic#dependencies). Then add the following package to your `Cargo.toml`: ```bash - cargo add --git https://github.com/Ultimaker/curaengine_grpc_defintions.git + cargo add --git https://github.com/Ultimaker/curaengine_grpc_definitions.git ```