Skip to content

Commit

Permalink
x_x
Browse files Browse the repository at this point in the history
  • Loading branch information
iddm committed Dec 5, 2023
1 parent 5786c3c commit 725e914
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: vityafx
github: iddm
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Work with steam id easily"
readme = "README.md"
license = "MIT"
keywords = ["steam", "steamid", "id"]
repository = "https://github.com/vityafx/steamidfx"
repository = "https://github.com/iddm/steamidfx"
documentation = "https://docs.rs/steamidfx"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -22,12 +22,12 @@ version = "1"
optional = true

[dependencies.serde-aux]
version = "2"
version = "4"
optional = true

[dev-dependencies.serde_json]
version = "1"

[features]
default = ["serialization"]
serialization = ["serde", "serde-aux"]
serialization = ["serde", "serde-aux"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# steamidfx
[![Crates badge](https://meritbadge.herokuapp.com/steamidfx)](https://crates.io/crates/steamidfx)
[![CI](https://github.com/vityafx/steamidfx/actions/workflows/ci.yml/badge.svg)](https://github.com/vityafx/steamidfx/actions/workflows/ci.yml)
[![CI](https://github.com/iddm/steamidfx/actions/workflows/ci.yml/badge.svg)](https://github.com/iddm/steamidfx/actions/workflows/ci.yml)
[![Documentation](https://docs.rs/steamidfx/badge.svg)](https://docs.rs/steamidfx)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)

Expand All @@ -17,4 +17,4 @@ The minimal rust version the library supports is `1.42`.
Previous versions might still work but not guaranteed to work correctly.

## License
This project is [licensed under the MIT license](https://github.com/vityafx/steamidfx/blob/master/LICENSE).
This project is [licensed under the MIT license](https://github.com/iddm/steamidfx/blob/master/LICENSE).
4 changes: 2 additions & 2 deletions src/id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ impl Id3 {
let authentication_server: u8 = split[1].parse()?;
let account: u32 = split[2].parse()?;
Ok(Info {
/// The universe is hard to know for sure, as from `SteamId3` format it is unknown how to
/// parse it.
// The universe is hard to know for sure, as from `SteamId3` format it is unknown how to
// parse it.
universe: Universe::IndividualOrUnspecified,
account_type: AccountType::from_str(split[0])?,
instance: u32::from(DEFAULT_STEAM_ACCOUNT_INSTANCE),
Expand Down

0 comments on commit 725e914

Please sign in to comment.