aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-28 02:15:02 -0700
committerFuwn <[email protected]>2022-06-28 02:15:02 -0700
commitd011b3bf0284ef0e9f87b09e0a25770c96a5c167 (patch)
treec57ede11a2c2df01c11cb14e8ad9871a8eaf65cc /Cargo.toml
downloadsumy-main.tar.xz
sumy-main.zip
feat: initial commitHEAD0.1.0main
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..96ddd26
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,22 @@
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[package]
+name = "sumy"
+version = "0.1.0"
+authors = ["Fuwn"]
+edition = "2021"
+description = "Node.js Bindings to Germ"
+readme = "README.md"
+homepage = "https://github.com/gemrest/sumy"
+repository = "https://github.com/gemrest/sumy"
+license = "GPL-3.0-only"
+keywords = ["gemrest", "gemini"]
+exclude = ["index.node"]
+
+[lib]
+crate-type = ["cdylib"]
+
+[dependencies]
+neon = { version = "0.10", default-features = false, features = ["napi-6"] }
+germ = { version = "0.3.3", default-features = false, features = ["convert", "request"] }
+url = "2.2.2"