Initialize images

This commit is contained in:
Elnu 2023-08-08 13:44:58 -07:00
parent dad460ad37
commit 7c043e8357
5 changed files with 17 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{ {
"rust-analyzer.linkedProjects": [ "rust-analyzer.linkedProjects": [
"./tatoeba/Cargo.toml", "./tatoeba/Cargo.toml",
"./images/Cargo.toml",
"./utils/Cargo.toml" "./utils/Cargo.toml"
] ]
} }

4
Cargo.lock generated
View file

@ -695,6 +695,10 @@ dependencies = [
"unicode-normalization", "unicode-normalization",
] ]
[[package]]
name = "images"
version = "0.1.0"
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "1.9.3" version = "1.9.3"

View file

@ -1,2 +1,2 @@
[workspace] [workspace]
members = ["tatoeba", "utils"] members = ["tatoeba", "images", "utils"]

8
images/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "images"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
images/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}