Skip to content

Commit 98e3430

Browse files
authored
chore(release): prepare publishing (#279)
- sspi -> 0.13.0 - winscard -> 0.2.0 - Devolutions.Sspi -> 2024.8.5.0
1 parent 488b8f9 commit 98e3430

File tree

7 files changed

+10
-22
lines changed

7 files changed

+10
-22
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sspi"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT OR Apache-2.0"
@@ -88,7 +88,7 @@ rustls-native-certs = { version = "0.7", optional = true }
8888
# `rt-multi-thread` feature is required for `tokio::task::block_in_place` function.
8989
tokio = { version = "1.39", optional = true, features = ["time", "rt", "rt-multi-thread"] }
9090
pcsc = { version = "2.8", optional = true }
91-
winscard = { version = "0.1", optional = true, path = "./crates/winscard" }
91+
winscard = { version = "0.2", optional = true, path = "./crates/winscard" }
9292

9393
[target.'cfg(windows)'.dependencies]
9494
winreg = "0.52"

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,6 @@ The sspi-rs works in accordance with the MSDN documentation. At the moment, [NT
1212

1313
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).
1414

15-
## Usage
16-
17-
sspi-rs is included in the Cargo.toml like this:
18-
```TOML
19-
[dependencies]
20-
sspi = "0.11.1"
21-
```
22-
After that you can `use` the types that you need.
23-
24-
2515
## Documentation
2616

2717
Documentation will give you a comprehensive overlook of the crate. For the example of a simple use case, visit the [examples](examples) folder.

crates/ffi-types/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[package]
22
name = "ffi-types"
3-
version = "0.1.0"
4-
edition = "2021"
3+
version = "0.0.0"
54
license = "MIT/Apache-2.0"
5+
edition = "2021"
6+
publish = false
67

78
[features]
89
default = []
910
winscard = []
10-
11-
[dependencies]

crates/winscard/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "winscard"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
readme = "README.md"
66
license = "MIT/Apache-2.0"

ffi/dotnet/Devolutions.Sspi/Devolutions.Sspi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Description>Portable Rust SSPI library</Description>
66
<TargetFrameworks>netstandard2.0</TargetFrameworks>
77
<LangVersion>latest</LangVersion>
8-
<Version>2024.5.27.0</Version>
8+
<Version>2024.8.5.0</Version>
99
<ImplicitUsings>disable</ImplicitUsings>
1010
<Nullable>enable</Nullable>
1111
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

fuzz/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
[package]
32
name = "sspi-fuzz"
43
version = "0.0.0"

0 commit comments

Comments
 (0)