TrustTunnel/deeplink/Cargo.toml
Aleksei Zhavoronkov bd1d69843d Pull request 166: Prevent race condition in python_compat tests
Squashed commit of the following:

commit 7c3d6597b51812887bae05efeb518dc11571fdf7
Author: Zhavoronkov Aleksei <a.zhavoronkov@adguard.com>
Date:   Wed Feb 25 17:32:45 2026 +0300

    Prevent data race in python_compat tests

commit 6629d9140cddaf1bfac2c9f71b78b04a80ebf0d1
Author: Zhavoronkov Aleksei <a.zhavoronkov@adguard.com>
Date:   Wed Feb 25 17:16:41 2026 +0300

    Revert "Prevent race condition in python_compat tests"
    
    This reverts commit 9104115bf00c6fa9bc81a9a7b2143569df81f88b.

commit 9104115bf00c6fa9bc81a9a7b2143569df81f88b
Author: Zhavoronkov Aleksei <a.zhavoronkov@adguard.com>
Date:   Wed Feb 25 17:10:37 2026 +0300

    Prevent race condition in python_compat tests
2026-02-25 16:37:44 +00:00

26 lines
499 B
TOML

[package]
name = "trusttunnel-deeplink"
version = "0.1.0"
edition = "2021"
authors = ["AdGuard"]
description = "Deep-link URI encoding and decoding for TrustTunnel configurations"
repository = "https://github.com/TrustTunnel/TrustTunnel"
[dependencies]
base64 = "0.21"
thiserror = "1.0"
rustls-pemfile = "1.0"
hex = "0.4"
[features]
default = []
serde = ["dep:serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies]
proptest = "1.0"
rand = "0.10.0"