From f11073753936905516e52d1e79a21c103320bfbd Mon Sep 17 00:00:00 2001 From: Guillaume Yziquel Date: Tue, 18 Jul 2023 11:22:11 +0200 Subject: [PATCH 1/3] Enabling RUST_LOG parsing by enabling unicode-case feature of regex crate. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 545c159..926fca1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,6 +29,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1" tracing-subscriber = "0.2" +regex = { version = "1.9", features = ["unicode-case"] } tracing-futures = "0.2" futures = "0.3" semver = { version = "0.11", features = ["serde"] } From 601bd385707ede81da5f41737cfc637d4ef8f9ec Mon Sep 17 00:00:00 2001 From: Guillaume Yziquel Date: Wed, 22 Nov 2023 23:11:18 +0100 Subject: [PATCH 2/3] Using a vendored openssl to fix linking issues. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 545c159..c39aa22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,8 @@ db-redis = ["redis"] db-mongo = ["mongodb", "bson"] [dependencies] +openssl = { version = "0.10", features = ["vendored"] } + tokio = { version = "1.1", features = ["macros", "rt-multi-thread", "fs", "io-util"] } warp = "0.3" serde = { version = "1.0", features = ["derive"] } From 530e816e5fe7de1a3c70e6c5e25a4648d33db475 Mon Sep 17 00:00:00 2001 From: Guillaume Yziquel Date: Thu, 23 Nov 2023 20:35:11 +0100 Subject: [PATCH 3/3] Providing a Justfile. --- Justfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..290594e --- /dev/null +++ b/Justfile @@ -0,0 +1,9 @@ +[private] +@default: + echo Dockerless build system for Ktra + echo + just --list + +# Builds Ktra. +build: + cargo build