diff --git a/Cargo.lock b/Cargo.lock
index cc19842b..b8c47dc7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -629,7 +629,7 @@ dependencies = [
[[package]]
name = "ffi-types"
-version = "0.1.0"
+version = "0.0.0"
[[package]]
name = "fiat-crypto"
@@ -2347,7 +2347,7 @@ dependencies = [
[[package]]
name = "sspi"
-version = "0.12.0"
+version = "0.13.0"
dependencies = [
"async-dnssd",
"async-recursion",
@@ -3183,7 +3183,7 @@ dependencies = [
[[package]]
name = "winscard"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"base64",
"bitflags 2.6.0",
diff --git a/Cargo.toml b/Cargo.toml
index e685da7c..3755445d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
@@ -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"
diff --git a/README.md b/README.md
index 5b4d09dc..d7cd61ca 100644
--- a/README.md
+++ b/README.md
@@ -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.
diff --git a/crates/ffi-types/Cargo.toml b/crates/ffi-types/Cargo.toml
index f7dede15..e7f3b4a4 100644
--- a/crates/ffi-types/Cargo.toml
+++ b/crates/ffi-types/Cargo.toml
@@ -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]
diff --git a/crates/winscard/Cargo.toml b/crates/winscard/Cargo.toml
index 059a1d92..24f1eb53 100644
--- a/crates/winscard/Cargo.toml
+++ b/crates/winscard/Cargo.toml
@@ -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"
diff --git a/ffi/dotnet/Devolutions.Sspi/Devolutions.Sspi.csproj b/ffi/dotnet/Devolutions.Sspi/Devolutions.Sspi.csproj
index dcf5232d..2fed753a 100644
--- a/ffi/dotnet/Devolutions.Sspi/Devolutions.Sspi.csproj
+++ b/ffi/dotnet/Devolutions.Sspi/Devolutions.Sspi.csproj
@@ -5,7 +5,7 @@
Portable Rust SSPI library
netstandard2.0
latest
- 2024.5.27.0
+ 2024.8.5.0
disable
enable
true
diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml
index 7aa961e4..2562a849 100644
--- a/fuzz/Cargo.toml
+++ b/fuzz/Cargo.toml
@@ -1,4 +1,3 @@
-
[package]
name = "sspi-fuzz"
version = "0.0.0"