[package]
edition = "2024"
name = "clickhouse-cloud-api"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed Rust client for the ClickHouse Cloud API"
homepage = "https://github.com/ClickHouse/clickhousectl"
readme = "README.md"
keywords = [
"clickhouse",
"cloud",
"api",
"client",
]
categories = [
"api-bindings",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/ClickHouse/clickhousectl"
[features]
deprecated-fields = []
[lib]
name = "clickhouse_cloud_api"
path = "src/lib.rs"
[[test]]
name = "clickpipe_e2e_test"
path = "tests/clickpipes/e2e_test.rs"
[[test]]
name = "clickpipe_kafka_test"
path = "tests/clickpipes/kafka_test.rs"
[[test]]
name = "clickpipe_kinesis_test"
path = "tests/clickpipes/kinesis_test.rs"
[[test]]
name = "clickpipe_mongo_test"
path = "tests/clickpipes/mongo_test.rs"
[[test]]
name = "clickpipe_mysql_test"
path = "tests/clickpipes/mysql_test.rs"
[[test]]
name = "clickpipe_postgres_cdc_test"
path = "tests/clickpipes/postgres_cdc_test.rs"
[[test]]
name = "clickpipe_postgres_ec2_test"
path = "tests/clickpipes/postgres_ec2_test.rs"
[[test]]
name = "clickpipe_s3_test"
path = "tests/clickpipes/s3_test.rs"
[[test]]
name = "clickpipe_smoke_test"
path = "tests/clickpipes/smoke_test.rs"
[[test]]
name = "client_test"
path = "tests/client_test.rs"
[[test]]
name = "integration_org_test"
path = "tests/integration_org_test.rs"
[[test]]
name = "integration_postgres_test"
path = "tests/integration_postgres_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "models_test"
path = "tests/models_test.rs"
[[test]]
name = "spec_coverage_test"
path = "tests/spec_coverage_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"serde",
"v4",
]
[dev-dependencies.aws-config]
version = "1.8.16"
features = ["credentials-login"]
[dev-dependencies.aws-credential-types]
version = "1.2.14"
[dev-dependencies.aws-sdk-ec2]
version = "1.225.0"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dev-dependencies.aws-sdk-iam]
version = "1.108.1"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dev-dependencies.aws-sdk-kinesis]
version = "1.104.0"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dev-dependencies.aws-sdk-s3]
version = "1.132.0"
features = [
"default-https-client",
"rt-tokio",
"sigv4a",
"http-1x",
]
default-features = false
[dev-dependencies.base64]
version = "0.22.1"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.rcgen]
version = "0.14.8"
[dev-dependencies.rustls]
version = "0.23.40"
features = [
"ring",
"std",
"tls12",
]
default-features = false
[dev-dependencies.rustls-native-certs]
version = "0.8.3"
[dev-dependencies.rustls-pemfile]
version = "2.2.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tokio-postgres]
version = "0.7.17"
[dev-dependencies.tokio-postgres-rustls]
version = "0.13.0"
[dev-dependencies.uuid]
version = "1"
[dev-dependencies.wiremock]
version = "0.6"