From 51b5475f40111d0a084b3ede6eec77d28b375536 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 3 May 2021 23:31:05 +0200 Subject: feat(web/atward): Implement match scaffolding for TVL redirector atward is going to be a new TVL service, living at atward.tvl.fyi, which users can configure as a search engine in their browser. It will understand a variety of TVL-specific query types (such as bug/CL links or code paths). In the future it might also support features like go-links. This commit configures the initial setup for query matchers in atward and adds an example query type (for bugs). This is not yet wired up to a web server. Change-Id: Ifaf06c3f5cc378eee7894b7576ef583fc89264f0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3087 Tested-by: BuildkiteCI Reviewed-by: isomer --- web/atward/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 web/atward/Cargo.toml (limited to 'web/atward/Cargo.toml') diff --git a/web/atward/Cargo.toml b/web/atward/Cargo.toml new file mode 100644 index 0000000000..c9d8d02c0d --- /dev/null +++ b/web/atward/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "atward" +version = "0.1.0" +authors = ["Vincent Ambo "] +edition = "2018" + +[dependencies] +regex = "1.5" +rouille = "3.0" -- cgit 1.4.1