-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #196 from c410-f3r/rrrrr
Breaking free from the constraints of `AsyncBounds`
- Loading branch information
Showing
52 changed files
with
402 additions
and
407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
cargo-features = ["edition2024"] | ||
|
||
[dependencies] | ||
clap = { default-features = false, features = ["derive", "help", "std", "usage"], optional = true, version = "4.5" } | ||
dotenv = { default-features = false, optional = true, version = "0.15" } | ||
tokio = { default-features = false, features = ["io-std", "io-util", "macros", "net", "rt-multi-thread"], version = "1.0" } | ||
wtx = { default-features = false, features = ["tokio"], path = "../wtx" } | ||
|
||
[features] | ||
clap = ["dep:clap"] | ||
default = [] | ||
dotenv = ["dep:dotenv"] | ||
embed-migrations = ["clap", "tokio/fs", "wtx/schema-manager", "wtx/std"] | ||
http-client = ["clap", "wtx/http-client", "wtx/tokio-rustls", "wtx/webpki-roots"] | ||
schema-manager = ["clap", "wtx/postgres", "wtx/schema-manager", "wtx/std"] | ||
|
@@ -17,7 +21,7 @@ authors = ["Caio Fernandes <[email protected]>"] | |
categories = ["asynchronous", "command-line-interface", "gui"] | ||
description = "Different user interfaces for WTX" | ||
documentation = "https://docs.rs/wtx-ui" | ||
edition = "2021" | ||
edition = "2024" | ||
keywords = ["io", "network", "websocket"] | ||
license = "Apache-2.0" | ||
name = "wtx-ui" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
cargo-features = ["edition2024"] | ||
|
||
[[bin]] | ||
name = "autobahn-client" | ||
path = "src/bin/autobahn-client.rs" | ||
|
@@ -99,40 +101,68 @@ tokio = { default-features = false, features = ["macros", "net", "rt-multi-threa | |
[features] | ||
ahash = ["dep:ahash", "hashbrown?/ahash"] | ||
arbitrary = ["dep:arbitrary", "std"] | ||
async-send = ["parking_lot?/send_guard"] | ||
async-std = ["dep:async-std", "std"] | ||
atoi = ["dep:atoi"] | ||
base64 = ["dep:base64"] | ||
borsh = ["dep:borsh", "std"] | ||
chrono = ["dep:chrono"] | ||
cl-aux = ["dep:cl-aux"] | ||
client-api-framework = ["cl-aux"] | ||
crypto-common = ["dep:crypto-common"] | ||
database = [] | ||
default = [] | ||
digest = ["dep:digest"] | ||
embassy-net = ["dep:embassy-net"] | ||
embassy-sync = ["dep:embassy-sync"] | ||
embassy-time = ["dep:embassy-time"] | ||
embedded-tls = ["dep:embedded-io-async", "dep:embedded-tls"] | ||
fastrand = ["dep:fastrand"] | ||
flate2 = ["dep:flate2"] | ||
futures-lite = ["dep:futures-lite"] | ||
glommio = ["futures-lite", "dep:glommio", "std"] | ||
grpc = ["http2"] | ||
hashbrown = ["dep:hashbrown"] | ||
hmac = ["dep:hmac"] | ||
http-client = ["http2", "pool"] | ||
http1 = ["httparse"] | ||
http2 = ["ahash", "hashbrown"] | ||
http2 = ["ahash", "hashbrown", "tokio"] | ||
httparse = ["dep:httparse"] | ||
memchr = ["dep:memchr"] | ||
miniserde = ["dep:miniserde", "std"] | ||
optimization = ["atoi", "memchr", "simdutf8"] | ||
parking_lot = ["dep:parking_lot"] | ||
pool = [] | ||
postgres = ["ahash", "base64", "crypto-common", "database", "digest", "hashbrown", "hmac", "sha2"] | ||
proptest = ["dep:proptest"] | ||
protobuf = ["dep:protobuf", "std"] | ||
rand = ["dep:rand"] | ||
ring = ["dep:ring"] | ||
rkyv = ["dep:rkyv"] | ||
rust_decimal = ["dep:rust_decimal"] | ||
rustls-pemfile = ["dep:rustls-pemfile"] | ||
rustls-pki-types = ["dep:rustls-pki-types"] | ||
schema-manager = ["database", "chrono"] | ||
schema-manager-dev = ["schema-manager"] | ||
serde = ["cl-aux?/serde", "dep:serde"] | ||
serde_json = ["serde", "dep:serde_json", "std"] | ||
serde_yaml = ["serde", "dep:serde_yaml", "std"] | ||
serde-xml-rs = ["serde", "dep:serde-xml-rs", "std"] | ||
sha1 = ["dep:sha1"] | ||
sha2 = ["dep:sha2"] | ||
simd-json = ["serde", "dep:simd-json", "std"] | ||
simdutf8 = ["dep:simdutf8"] | ||
smol = ["dep:smol", "std"] | ||
smoltcp = ["dep:smoltcp"] | ||
std = ["ahash?/std", "atoi?/std", "cl-aux?/std", "embassy-sync?/std", "memchr?/std", "miniserde?/std", "serde?/std", "serde_json?/std", "simdutf8?/std"] | ||
test-strategy = ["dep:test-strategy", "proptest"] | ||
tokio = ["async-send", "std", "dep:tokio"] | ||
tokio = ["std", "dep:tokio"] | ||
tokio-rustls = ["ring", "rustls-pki-types", "tokio", "dep:tokio-rustls"] | ||
tracing = ["dep:tracing"] | ||
web-socket = [] | ||
web-socket-handshake = ["base64", "http1", "sha1", "web-socket"] | ||
webpki-roots = ["dep:webpki-roots"] | ||
x509-certificate = ["dep:x509-certificate"] | ||
|
||
_bench = [] | ||
# It is not up to this crate to decide what downstream should use | ||
_hack = ["embassy-net?/medium-ip", "embassy-net?/proto-ipv4", "rkyv?/size_32", "simd-json?/allow-non-simd", "smoltcp?/medium-ip", "smoltcp?/proto-ipv4", "smoltcp?/socket-tcp"] | ||
_integration-tests = ["serde_json?/raw_value"] | ||
_proptest = ["proptest/std", "rust_decimal?/proptest", "std", "test-strategy"] | ||
|
@@ -144,7 +174,7 @@ authors = ["Caio Fernandes <[email protected]>"] | |
categories = ["asynchronous", "database", "network-programming", "no-std", "web-programming"] | ||
description = "A collection of different transport implementations and related tools focused primarily on web technologies." | ||
documentation = "https://docs.rs/wtx" | ||
edition = "2021" | ||
edition = "2024" | ||
exclude = ["examples", "src/bin", "tests"] | ||
homepage = "https://c410-f3r.github.io/wtx" | ||
keywords = ["api", "database", "http", "network", "websocket"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.