PkmnLib_rs/Cargo.toml

61 lines
1.2 KiB
TOML
Raw Normal View History

cargo-features = ["profile-rustflags"]
[package]
name = "pkmn_lib"
version = "0.1.0"
authors = ["Deukhoofd <Deukhoofd@gmail.com>"]
edition = "2018"
[lib]
name = "pkmn_lib"
crate_type = ["rlib"]
path = "src/lib.rs"
2022-06-03 14:35:18 +00:00
[features]
c_interface = []
serde = ["dep:serde", "dep:serde_json"]
default = ["serde"]
2022-06-03 14:35:18 +00:00
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = "thin"
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.release]
opt-level = 3
debug = 1
debug-assertions = false
overflow-checks = true
lto = "fat"
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false
[dependencies]
# Used for PrimInt, so we can check if a generic is an integer
num-traits = "0.2"
# Allow us to assert whether floats are approximately a value
assert_approx_eq = "1.1.0"
# Used for time based code (i.e. randomness)
chrono = "0.4.19"
# Used for RNG
rand = "0.8.5"
rand_pcg = "0.3.1"
2022-06-06 11:54:59 +00:00
hashbrown = "0.12.1"
indexmap = "1.8.2"
parking_lot = "0.12.1"
serde = { version = "1.0.137", optional = true, features = ["derive"] }
serde_json = { version = "1.0.81", optional = true }
[dev-dependencies]
csv = "1.1.6"
project-root = "0.2.2"
syn = "1.0.96"