Skip to content

Commit

Permalink
chore(release): prepare publishing (#279)
Browse files Browse the repository at this point in the history
- sspi -> 0.13.0
- winscard -> 0.2.0
- Devolutions.Sspi -> 2024.8.5.0
  • Loading branch information
CBenoit authored Aug 5, 2024
1 parent 488b8f9 commit 98e3430
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 22 deletions.
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

0 comments on commit 98e3430

Please sign in to comment.