aboutsummaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2022-10-10 21:30:02 +0200
committerAndreas Grois <andi@grois.info>2022-10-10 21:37:15 +0200
commite4ad766315879e1ff05bb111229f073f8f0ed68e (patch)
tree4b043ff47c78b2c00c80c94ebda622c32c8b6d3d /rust/Cargo.toml
PassFish: Initial Commit
Well, that's a lie. But nobody needs to see all the iterations I decided to sweep under the rug. That said, I think the repo is, while not clean, clean enough now, to not be embarrassed by uploading it to github.
Diffstat (limited to 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
new file mode 100644
index 0000000..85c38d7
--- /dev/null
+++ b/rust/Cargo.toml
@@ -0,0 +1,23 @@
+[package]
+name = "passfish"
+version = "1.0.0"
+edition = "2018"
+
+[dependencies]
+libc = "0.2"
+serde = { version = "1.0", features = ["derive", "rc"] }
+toml = "0.5"
+dirs = "4.0"
+unicode-segmentation = "1.10.0"
+mockall_double = "0.2"
+ripemd = {version = "0.1.3", features = ["std"] }
+passwordmaker_macros = { path = "../rust_macro" }
+passwordmaker-rs = { git = "https://github.com/soulsource/passwordmaker-rs.git" }
+
+[dev-dependencies]
+mockall = "0.11"
+rust_testhelper = { path = "../rust_testhelper" }
+
+[lib]
+name = "passfish"
+crate-type = ["cdylib"]