diff --git a/Cargo.toml b/Cargo.toml index 545c159..c3f5c07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,15 @@ 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"] } 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"] } 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