Fix post merge integration test issue

This commit is contained in:
Prabhpreet Dua
2024-04-15 14:25:09 +05:30
parent 4ea51ab123
commit a3e91a95df
6 changed files with 95 additions and 13 deletions

View File

@@ -9,6 +9,15 @@ homepage = "https://rosenpass.eu/"
repository = "https://github.com/rosenpass/rosenpass"
readme = "readme.md"
[[bin]]
name = "rosenpass"
path = "src/main.rs"
[[bin]]
name = "rp-it-dos"
required-features = ["integration_test_dos_exchange"]
path = "src/main.rs"
[[bench]]
name = "handshake"
harness = false
@@ -42,7 +51,9 @@ anyhow = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
test_bin = { workspace = true }
test-binary = { workspace = true }
stacker = { workspace = true }
libc = { workspace = true}
[features]
integration_test = ["dep:libc"]
integration_test_dos_exchange = ["dep:libc"]