Skip to content

Commit

Permalink
Merge pull request #108 from c410-f3r/misc
Browse files Browse the repository at this point in the history
0.14.0
  • Loading branch information
c410-f3r authored Feb 11, 2024
2 parents 3c16ecb + bc2d34e commit 92a0f66
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .scripts/fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

set -euxo pipefail

cargo fuzz run --features libfuzzer-sys/link_libfuzzer --fuzz-dir wtx-fuzz web-socket -- -max_total_time=30
cargo fuzz run --features libfuzzer-sys/link_libfuzzer --fuzz-dir wtx-fuzz web-socket -- -max_total_time=120
2 changes: 1 addition & 1 deletion .scripts/integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
export DATABASE_URI='postgres://wtx_md5:wtx@localhost:5432/wtx'
export RUSTFLAGS="$($rt rust-flags -Asingle-use-lifetimes,-Alet-underscore-drop)"

cargo test --all-features -- --test-threads=1
cargo test --all-features --release -- --test-threads=1

cargo run --bin wtx-ui --features embed-migrations -- embed-migrations -i .test-utils/migrations.toml -o wtx/tests/embedded_migrations/mod.rs
2 changes: 1 addition & 1 deletion Cargo.lock

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

7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
[![License](https://img.shields.io/badge/license-APACHE2-blue.svg)](https://github.com/c410-f3r/wtx/blob/main/LICENSE)
[![Rustc](https://img.shields.io/badge/rustc-1.75-lightgray")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)

A collection of different transport implementations and related tools focused primarily on web technologies. Contains the implementations of 5 IETF RFCs ([RFC6455](https://datatracker.ietf.org/doc/html/rfc6455), [RFC7541](https://datatracker.ietf.org/doc/html/rfc7541), [RFC7692](https://datatracker.ietf.org/doc/html/rfc7692), [RFC8441](https://datatracker.ietf.org/doc/html/rfc8441), [RFC9113](https://datatracker.ietf.org/doc/html/rfc9113)), 2 formal specifications ([PostgreSQL](https://www.postgresql.org/docs/16/protocol.html), [gRPC](https://github.com/grpc/grpc/blob/8ce97741877cc205f7ced333f617ea9cc79f65d2/doc/PROTOCOL-HTTP2.md)) and several other invented ideas.
A collection of different transport implementations and related tools focused primarily on web technologies. Contains the implementations of 2 IETF RFCs ([RFC6455](https://datatracker.ietf.org/doc/html/rfc6455), [RFC7692](https://datatracker.ietf.org/doc/html/rfc7692)), 1 formal specification ([PostgreSQL](https://www.postgresql.org/docs/16/protocol.html)) and several other invented ideas.

1. [Client API Framework](https://c410-f3r.github.io/wtx-site/client-api-framework/index.html)
2. [Database Client](https://c410-f3r.github.io/wtx-site/database/client-connection.html)
3. [Database Object–Relational Mapping](https://c410-f3r.github.io/wtx-site/database/object%E2%80%93relational-mapping.html)
4. [Database Schema Manager](https://c410-f3r.github.io/wtx-site/database/schema-management.html)
5. [Generic HTTP Client/Server](https://c410-f3r.github.io/wtx-site/http/index.html)
6. [WebTransport Client/Server](https://c410-f3r.github.io/wtx-site/web-socket/index.html)
7. [Pool Manager](https://c410-f3r.github.io/wtx-site/pool_manager/index.html)
5. [WebTransport Client/Server](https://c410-f3r.github.io/wtx-site/web-socket/index.html)
6. [Pool Manager](https://c410-f3r.github.io/wtx-site/pool_manager/index.html)

Embedded devices with a working heap allocator can use this `no_std` crate.

Expand Down
2 changes: 1 addition & 1 deletion wtx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ license = "Apache-2.0"
name = "wtx"
readme = "README.md"
repository = "https://github.com/c410-f3r/wtx"
version = "0.13.0"
version = "0.14.0"

[package.metadata.docs.rs]
all-features = true

0 comments on commit 92a0f66

Please sign in to comment.