renombrar warcificator -> scraper-rs

This commit is contained in:
Cat /dev/Nulo 2024-01-10 21:46:10 -03:00
parent 613efc3111
commit 348d054b7b
5 changed files with 26 additions and 26 deletions

2
.gitignore vendored
View file

@ -16,4 +16,4 @@ target/
*/flamegraph.svg
*/perf.data*
warcificator/debug/
scraper-rs/debug/

8
.vscode/launch.json vendored
View file

@ -7,13 +7,13 @@
{
"type": "lldb",
"request": "launch",
"name": "warcificator",
"cwd": "warcificator/",
"name": "scraper-rs",
"cwd": "scraper-rs/",
"cargo": {
// https://github.com/vadimcn/codelldb/issues/884
"args": ["build", "--manifest-path=warcificator/Cargo.toml"]
"args": ["build", "--manifest-path=scraper-rs/Cargo.toml"]
},
"args": ["../data/carrefour"],
"args": ["../data/Carrefour.txt"],
"env": {}
},
{

View file

@ -1011,6 +1011,26 @@ version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]]
name = "scraper-rs"
version = "0.1.0"
dependencies = [
"again",
"async-channel",
"nanoid",
"rand 0.8.5",
"reqwest",
"rusqlite",
"serde",
"serde_json",
"simple-error",
"thiserror",
"tl",
"tokio",
"tracing",
"tracing-subscriber",
]
[[package]]
name = "sct"
version = "0.7.1"
@ -1401,26 +1421,6 @@ dependencies = [
"try-lock",
]
[[package]]
name = "warcificator"
version = "0.1.0"
dependencies = [
"again",
"async-channel",
"nanoid",
"rand 0.8.5",
"reqwest",
"rusqlite",
"serde",
"serde_json",
"simple-error",
"thiserror",
"tl",
"tokio",
"tracing",
"tracing-subscriber",
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"

View file

@ -1,5 +1,5 @@
[package]
name = "warcificator"
name = "scraper-rs"
version = "0.1.0"
edition = "2021"