19 lines
342 B
TOML
19 lines
342 B
TOML
[package]
|
|
name = "plexcryptool"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "plexcryptool"
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "plexcryptool"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
num-bigint = "0.4.3"
|
|
pyo3 = "0.18.1"
|