Skip to content

Commit

Permalink
feat: new version
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Sep 30, 2023
1 parent dd304a4 commit c14cd6c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rookiepy"
version = "0.1.4"
version = "0.1.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
84 changes: 42 additions & 42 deletions rookie-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
[package]
name = "rookie"
version = "0.1.4"
edition = "2021"
description = "Load cookie from your web browsers"
license-file = "MIT-LICENSE.txt"
homepage = "https://crates.io/crates/rookie"
documentation = "https://docs.rs/rookie/"
repository = "https://github.com/thewh1teagle/rookie"
readme = "../README.md"
keywords = ["windows", "cookies", "rust", "web"]

[lib]
name = "rookie"
path = "src/lib.rs"

[[bin]]
name = "main"
path = "bin/main.rs"

[dependencies]
aes = "0.8.3"
aes-gcm = "0.10.3"
cbc = "0.1.2"
rusqlite = { version = "0.29.0", features = ["bundled"] }
rust-ini = "0.19.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"

url = "2.4.1"

[target.'cfg(unix)'.dependencies]
sha1 = "0.10.6"
pbkdf2 = "0.12.2"

[target.'cfg(target_os = "macos")'.dependencies]
sha1 = "0.10.6"
pbkdf2 = "0.12.2"

[target.'cfg(windows)'.dependencies]
windows = { version = "0.51.1", features = ["Win32_Security_Cryptography", "Win32_Foundation"] }
base64 = "0.21.4"
[package]
name = "rookie"
version = "0.1.5"
edition = "2021"
description = "Load cookie from your web browsers"
license-file = "MIT-LICENSE.txt"
homepage = "https://crates.io/crates/rookie"
documentation = "https://docs.rs/rookie/"
repository = "https://github.com/thewh1teagle/rookie"
readme = "../README.md"
keywords = ["windows", "cookies", "rust", "web"]

[lib]
name = "rookie"
path = "src/lib.rs"

[[bin]]
name = "main"
path = "bin/main.rs"

[dependencies]
aes = "0.8.3"
aes-gcm = "0.10.3"
cbc = "0.1.2"
rusqlite = { version = "0.29.0", features = ["bundled"] }
rust-ini = "0.19.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"

url = "2.4.1"

[target.'cfg(unix)'.dependencies]
sha1 = "0.10.6"
pbkdf2 = "0.12.2"

[target.'cfg(target_os = "macos")'.dependencies]
sha1 = "0.10.6"
pbkdf2 = "0.12.2"

[target.'cfg(windows)'.dependencies]
windows = { version = "0.51.1", features = ["Win32_Security_Cryptography", "Win32_Foundation"] }
base64 = "0.21.4"

0 comments on commit c14cd6c

Please sign in to comment.