Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): prepare publishing #279

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sspi"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -88,7 +88,7 @@ rustls-native-certs = { version = "0.7", optional = true }
# `rt-multi-thread` feature is required for `tokio::task::block_in_place` function.
tokio = { version = "1.39", optional = true, features = ["time", "rt", "rt-multi-thread"] }
pcsc = { version = "2.8", optional = true }
winscard = { version = "0.1", optional = true, path = "./crates/winscard" }
winscard = { version = "0.2", optional = true, path = "./crates/winscard" }

[target.'cfg(windows)'.dependencies]
winreg = "0.52"
Expand Down
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,6 @@ The sspi-rs works in accordance with the MSDN documentation. At the moment, [NT

Some SSPI functions tend to be cumbersome, that's why sspi-rs allows to use SSPI in a convenient way by utilizing builders. Examples are available in the [examples](examples), [example section](#example), and [Documentation](target/doc/sspi/index.html).

## Usage

sspi-rs is included in the Cargo.toml like this:
```TOML
[dependencies]
sspi = "0.11.1"
```
After that you can `use` the types that you need.


## Documentation

Documentation will give you a comprehensive overlook of the crate. For the example of a simple use case, visit the [examples](examples) folder.
Expand Down
7 changes: 3 additions & 4 deletions crates/ffi-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[package]
name = "ffi-types"
version = "0.1.0"
edition = "2021"
version = "0.0.0"
license = "MIT/Apache-2.0"
edition = "2021"
publish = false

[features]
default = []
winscard = []

[dependencies]
2 changes: 1 addition & 1 deletion crates/winscard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "winscard"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
readme = "README.md"
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion ffi/dotnet/Devolutions.Sspi/Devolutions.Sspi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>Portable Rust SSPI library</Description>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>2024.5.27.0</Version>
<Version>2024.8.5.0</Version>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down
1 change: 0 additions & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

[package]
name = "sspi-fuzz"
version = "0.0.0"
Expand Down