Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ members = [

[package]
name = "skywalking"
version = "0.9.0-dev"
version = "0.9.0"
authors = ["Apache Software Foundation"]
edition = "2024"
description = "Apache SkyWalking Rust Agent"
Expand Down
2 changes: 1 addition & 1 deletion dist-material/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ The text of each license is the standard Apache 2.0 license.
https://crates.io/crates/prost-derive/0.13.5 0.13.5 Apache-2.0
https://crates.io/crates/prost-types/0.13.5 0.13.5 Apache-2.0
https://crates.io/crates/protobuf-src/2.1.1+27.1 2.1.1+27.1 Apache-2.0
https://crates.io/crates/skywalking/0.9.0-dev 0.9.0-dev Apache-2.0
https://crates.io/crates/skywalking/0.9.0 0.9.0 Apache-2.0
https://crates.io/crates/sync_wrapper/1.0.2 1.0.2 Apache-2.0

========================================================================
Expand Down
2 changes: 1 addition & 1 deletion e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "e2e"
version = "0.0.0"
authors = ["Apache Software Foundation"]
edition = "2021"
edition = "2024"
publish = false
license = "Apache-2.0"
default-run = "e2e"
Expand Down
6 changes: 3 additions & 3 deletions e2e/src/e2e_kafka.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

use prost::Message;
use rdkafka::{
consumer::{Consumer, StreamConsumer},
ClientConfig, Message as _,
consumer::{Consumer, StreamConsumer},
};
use skywalking::proto::v3::{
log_data_body::Content, meter_data::Metric, JsonLog, KeyStringValuePair, LogData, LogTags,
MeterData, RefType, SegmentObject, SpanLayer, SpanType,
JsonLog, KeyStringValuePair, LogData, LogTags, MeterData, RefType, SegmentObject, SpanLayer,
SpanType, log_data_body::Content, meter_data::Metric,
};
use std::time::Duration;
use tokio::time::timeout;
Expand Down
4 changes: 2 additions & 2 deletions e2e/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
//
use http_body_util::{Empty, Full};
use hyper::{
Method, Request, Response, StatusCode,
body::{Bytes, Incoming},
client, server,
service::service_fn,
Method, Request, Response, StatusCode,
};
use hyper_util::rt::TokioIo;
use skywalking::{
Expand All @@ -33,9 +33,9 @@ use skywalking::{
metricer::Metricer,
},
reporter::{
CollectItem, Report,
grpc::GrpcReporter,
kafka::{KafkaReportBuilder, KafkaReporter, RDKafkaClientConfig},
CollectItem, Report,
},
trace::{
propagation::{
Expand Down
Loading