Skip to content

Commit 987ab22

Browse files
authored
azure_messaging_servicebus (#443)
1 parent 899fcdf commit 987ab22

File tree

9 files changed

+5
-5
lines changed

9 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123

124124
- name: e2e tests build
125125
run: |
126-
PROJECTS=(core cosmos identity service_bus storage)
126+
PROJECTS=(core cosmos identity messaging_servicebus storage)
127127
for PROJ in ${PROJECTS[@]}
128128
do
129129
echo "Checking e2e tests for $PROJ"

sdk/service_bus/Cargo.toml renamed to sdk/messaging_servicebus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2-
name = "azure_service_bus"
2+
name = "azure_messaging_servicebus"
33
version = "0.1.0"
44
description = "Rust wrappers around Microsoft Azure REST APIs - Service Bus crate"
55
readme = "README.md"
66
authors = ["Microsoft Corp."]
77
license = "MIT"
88
repository = "https://github.com/azure/azure-sdk-for-rust"
99
homepage = "https://github.com/azure/azure-sdk-for-rust"
10-
documentation = "https://docs.rs/azure_service_bus"
10+
documentation = "https://docs.rs/azure_messaging_servicebus"
1111

1212
keywords = ["sdk", "azure", "rest", "iot", "cloud"]
1313
categories = ["api-bindings"]
File renamed without changes.

sdk/service_bus/examples/service_bus00.rs renamed to sdk/messaging_servicebus/examples/service_bus00.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// use azure_service_bus::prelude::*;
1+
// use azure_messaging_servicebus::prelude::*;
22
// use chrono::Duration;
33
use std::error::Error;
44

File renamed without changes.

sdk/service_bus/tests/event_hub.rs renamed to sdk/messaging_servicebus/tests/event_hub.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// #[macro_use]
33
// extern crate log;
44

5-
// use azure_service_bus::event_hub::Client;
5+
// use azure_messaging_servicebus::event_hub::Client;
66
// use chrono::Duration;
77

88
// #[tokio::test]

0 commit comments

Comments
 (0)