2023-07-14 14:28:29 +02:00
|
|
|
[package]
|
|
|
|
name = "gitnuro-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
name = "gitnuro_rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-29 20:33:30 +01:00
|
|
|
uniffi = { version = "0.25.0" }
|
2023-07-14 14:28:29 +02:00
|
|
|
notify = "6.0.1"
|
|
|
|
thiserror = "1.0.43"
|
2023-10-29 20:33:30 +01:00
|
|
|
#TODO Remove git URL and branch once upstream libssh-rs merges this PR https://github.com/wez/libssh-rs/pull/19.
|
|
|
|
# Also change version to target that version as the minimum one
|
|
|
|
libssh-rs = { version = "0.2.1", git = "https://github.com/JetpackDuba/libssh-rs.git", branch = "#18", features = [ "vendored", "vendored-openssl" ] }
|
2023-07-14 14:28:29 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-10-29 20:33:30 +01:00
|
|
|
uniffi = { version = "0.25.0", features = [ "build" ] }
|
2023-07-14 14:28:29 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
# This can be whatever name makes sense for your project, but the rest of this tutorial assumes uniffi-bindgen.
|
|
|
|
name = "uniffi-bindgen"
|
|
|
|
path = "uniffi-bindgen.rs"
|