@@ -275,6 +275,9 @@ serde_json.workspace = true
275275serde_with = { version = " 3.12.0" , default-features = false , features = [" macros" , " std" ] }
276276serde_yaml = { version = " 0.9.34" , default-features = false }
277277
278+ # Databases
279+ mysql = { version = " 26.0.0" , features = [" chrono" , " native-tls" , " buffer-pool" ], optional = true }
280+
278281# Messagepack
279282rmp-serde = { version = " 1.3.0" , default-features = false , optional = true }
280283rmpv = { version = " 1.3.0" , default-features = false , features = [" with-serde" ], optional = true }
@@ -321,6 +324,7 @@ bytesize = { version = "2.0.1", default-features = false }
321324chrono.workspace = true
322325chrono-tz.workspace = true
323326colored = { version = " 3.0.0" , default-features = false }
327+ cron = { version = " 0.15.0" , features = [" serde" ], default-features = false , optional = true }
324328csv = { version = " 1.3" , default-features = false }
325329databend-client = { version = " 0.22.2" , default-features = false , features = [" rustls" ], optional = true }
326330derivative = { version = " 2.2.0" , default-features = false }
@@ -565,6 +569,7 @@ sources-logs = [
565569 " sources-aws_kinesis_firehose" ,
566570 " sources-aws_s3" ,
567571 " sources-aws_sqs" ,
572+ " sources-database" ,
568573 " sources-datadog_agent" ,
569574 " sources-demo_logs" ,
570575 " sources-docker_logs" ,
@@ -613,6 +618,7 @@ sources-aws_ecs_metrics = ["sources-utils-http-client"]
613618sources-aws_kinesis_firehose = [" dep:base64" ]
614619sources-aws_s3 = [" aws-core" , " dep:aws-sdk-sqs" , " dep:aws-sdk-s3" , " dep:async-compression" , " sources-aws_sqs" , " tokio-util/io" ]
615620sources-aws_sqs = [" aws-core" , " dep:aws-sdk-sqs" ]
621+ sources-database = [" dep:mysql" , " dep:cron" ]
616622sources-datadog_agent = [" sources-utils-http-error" , " protobuf-build" , " dep:prost" ]
617623sources-demo_logs = [" dep:fakedata" ]
618624sources-dnstap = [" sources-utils-net-tcp" , " dep:base64" , " dep:hickory-proto" , " dep:dnsmsg-parser" , " dep:dnstap-parser" , " protobuf-build" , " dep:prost" ]
@@ -914,6 +920,7 @@ axiom-integration-tests = ["sinks-axiom"]
914920azure-blob-integration-tests = [" sinks-azure_blob" ]
915921chronicle-integration-tests = [" sinks-gcp" ]
916922clickhouse-integration-tests = [" sinks-clickhouse" ]
923+ database-integration-tests = [" sources-database" ]
917924databend-integration-tests = [" sinks-databend" ]
918925datadog-agent-integration-tests = [" sources-datadog_agent" ]
919926datadog-logs-integration-tests = [" sinks-datadog_logs" ]
0 commit comments