Skip to content

Commit 515ea5e

Browse files
authored
Release SkyWalking Rust 0.9.0 (#66)
1 parent 76c6dfc commit 515ea5e

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ members = [
2424

2525
[package]
2626
name = "skywalking"
27-
version = "0.9.0-dev"
27+
version = "0.9.0"
2828
authors = ["Apache Software Foundation"]
2929
edition = "2024"
3030
description = "Apache SkyWalking Rust Agent"

dist-material/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ The text of each license is the standard Apache 2.0 license.
212212
https://crates.io/crates/prost-derive/0.13.5 0.13.5 Apache-2.0
213213
https://crates.io/crates/prost-types/0.13.5 0.13.5 Apache-2.0
214214
https://crates.io/crates/protobuf-src/2.1.1+27.1 2.1.1+27.1 Apache-2.0
215-
https://crates.io/crates/skywalking/0.9.0-dev 0.9.0-dev Apache-2.0
215+
https://crates.io/crates/skywalking/0.9.0 0.9.0 Apache-2.0
216216
https://crates.io/crates/sync_wrapper/1.0.2 1.0.2 Apache-2.0
217217

218218
========================================================================

e2e/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "e2e"
2020
version = "0.0.0"
2121
authors = ["Apache Software Foundation"]
22-
edition = "2021"
22+
edition = "2024"
2323
publish = false
2424
license = "Apache-2.0"
2525
default-run = "e2e"

e2e/src/e2e_kafka.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818

1919
use prost::Message;
2020
use rdkafka::{
21-
consumer::{Consumer, StreamConsumer},
2221
ClientConfig, Message as _,
22+
consumer::{Consumer, StreamConsumer},
2323
};
2424
use skywalking::proto::v3::{
25-
log_data_body::Content, meter_data::Metric, JsonLog, KeyStringValuePair, LogData, LogTags,
26-
MeterData, RefType, SegmentObject, SpanLayer, SpanType,
25+
JsonLog, KeyStringValuePair, LogData, LogTags, MeterData, RefType, SegmentObject, SpanLayer,
26+
SpanType, log_data_body::Content, meter_data::Metric,
2727
};
2828
use std::time::Duration;
2929
use tokio::time::timeout;

e2e/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
//
1818
use http_body_util::{Empty, Full};
1919
use hyper::{
20+
Method, Request, Response, StatusCode,
2021
body::{Bytes, Incoming},
2122
client, server,
2223
service::service_fn,
23-
Method, Request, Response, StatusCode,
2424
};
2525
use hyper_util::rt::TokioIo;
2626
use skywalking::{
@@ -33,9 +33,9 @@ use skywalking::{
3333
metricer::Metricer,
3434
},
3535
reporter::{
36+
CollectItem, Report,
3637
grpc::GrpcReporter,
3738
kafka::{KafkaReportBuilder, KafkaReporter, RDKafkaClientConfig},
38-
CollectItem, Report,
3939
},
4040
trace::{
4141
propagation::{

0 commit comments

Comments
 (0)