I tried to add the library to Cargo.toml with following line:
sharepoint = "0.3.0"
It results to following error:
~/IdeaProjects/SharePoint git:[master]
cargo update
Updating crates.io index
error: failed to select a version for the requirement security-framework = "^0.1.9"
candidate versions found which didn't match: 2.11.1, 2.11.0, 2.10.0, ...
location searched: crates.io index
required by package native-tls v0.1.0
... which satisfies dependency native-tls = "^0.1" of package hyper-tls v0.1.2
... which satisfies dependency hyper-tls = "^0.1.2" of package sharepoint v0.3.0
... which satisfies dependency sharepoint = "^0.3.0" of package SharePoint v0.1.0 (/home/frank/IdeaProjects/SharePoint)
if you are looking for the prerelease package it needs to be specified explicitly
security-framework = { version = "2.8.0-beta.1" }
I tried to add the library to Cargo.toml with following line: sharepoint = "0.3.0"
It results to following error: ~/IdeaProjects/SharePoint git:[master] cargo update Updating crates.io index error: failed to select a version for the requirement
security-framework = "^0.1.9"
candidate versions found which didn't match: 2.11.1, 2.11.0, 2.10.0, ... location searched: crates.io index required by packagenative-tls v0.1.0
... which satisfies dependencynative-tls = "^0.1"
of packagehyper-tls v0.1.2
... which satisfies dependencyhyper-tls = "^0.1.2"
of packagesharepoint v0.3.0
... which satisfies dependencysharepoint = "^0.3.0"
of packageSharePoint v0.1.0 (/home/frank/IdeaProjects/SharePoint)
if you are looking for the prerelease package it needs to be specified explicitly security-framework = { version = "2.8.0-beta.1" }