Skip to content
Merged
165 changes: 50 additions & 115 deletions Cargo.lock

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

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,23 @@ license = "MIT OR Apache-2.0"
[workspace.dependencies]
anyhow = "1.0.97"
async-backtrace = "0.2.7"
clap = { version = "4.5.40", features = ["derive"] }
convert_case = "0.11.0"
e2etest-macros = { path = "crates/e2etest-macros", version = "0.1.0" }
futures = "0.3.31"
hickory-server = "0.26.1"
itertools = "0.14.0"
linkme = "0.3.36"
neli = { version = "0.7.4", default-features = false, features = ["async"] }
num-bigint = "0.4"
proc-macro2 = "1.0.106"
quote = "1.0.0"
rustls = "0.23"
rustls-pki-types = "1.13.1"
rcgen = "0.14.5"
reqwest = { version = "0.12.15", default-features = false, features = ["json", "rustls-tls"] }
scylla-proxy = "0.0.5"
serde = { version = "1.0.219", features = ["derive"] }
syn = { version = "2.0", features = ["full"] }
sysinfo = "0.37.2"
tap = "1.0.1"
tempfile = "3.20.0"
Expand Down
22 changes: 22 additions & 0 deletions crates/e2etest-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2026-present ScyllaDB
# SPDX-License-Identifier: MIT OR Apache-2.0

[package]
name = "e2etest-macros"
version = "0.1.0"
description = "Macros for e2etest"
repository = "https://github.com/scylladb/e2etest-rs"
readme = "README.md"
edition.workspace = true
license.workspace = true

[lib]
proc-macro = true

[dependencies]
convert_case.workspace = true
itertools.workspace = true
linkme.workspace = true
proc-macro2.workspace = true
quote.workspace = true
syn.workspace = true
15 changes: 15 additions & 0 deletions crates/e2etest-macros/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# e2etest-macros

The crate with a macros for `e2etest` framework.

[![crates.io](https://img.shields.io/crates/v/e2etest-macros.svg)](https://crates.io/crates/e2etest-macros)
[![docs.rs](https://img.shields.io/docsrs/e2etest-macros/latest)](https://docs.rs/e2etest-macros)

## License

Licensed under either of

- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)

at your option.
Loading