summaryrefslogtreecommitdiff
path: root/aline/Cargo.toml
diff options
context:
space:
mode:
authorMatthieu Pignolet <matthieu@puffer.fish>2025-05-18 19:00:51 +0400
committerMatthieu Pignolet <matthieu@puffer.fish>2025-05-18 19:00:51 +0400
commit20c7daa45e55063ff91e4a5a8ee09af53710a6d9 (patch)
treef3ea47cd3697a4bdd455d8991ba42d0b123fb1bb /aline/Cargo.toml
parentbdefb4e5f084a1e468ff4ee8d42035caf15c8e8d (diff)
feat: adding the library implementation
Diffstat (limited to 'aline/Cargo.toml')
-rw-r--r--aline/Cargo.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/aline/Cargo.toml b/aline/Cargo.toml
new file mode 100644
index 0000000..d829946
--- /dev/null
+++ b/aline/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "aline"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+once_cell = "1.21.3"
+serde = { version = "1.0.219", features = ["derive"] }
+serde_json = "1.0.140"
+unicode-segmentation = "1.12.0"