[package]
edition = "2021"
rust-version = "1.75"
name = "kshana"
version = "0.8.0"
authors = ["Chakshu Baweja <contact@ashforde.org>"]
build = false
exclude = [
"/web",
"/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open hybrid quantum/classical PNT performance simulator"
homepage = "https://github.com/AshfordeOU/kshana"
documentation = "https://docs.rs/kshana"
readme = "README.md"
keywords = [
"pnt",
"navigation",
"quantum",
"gnss",
"simulation",
]
categories = [
"science",
"simulation",
]
license = "Apache-2.0"
repository = "https://github.com/AshfordeOU/kshana"
[features]
python = ["dep:pyo3"]
wasm = ["dep:wasm-bindgen"]
[lib]
name = "kshana"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "kshana"
path = "src/main.rs"
[[test]]
name = "calibration"
path = "tests/calibration.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "sgp4_verification"
path = "tests/sgp4_verification.rs"
[dependencies.hex]
version = "0.4"
[dependencies.pyo3]
version = "0.24"
features = [
"extension-module",
"abi3-py39",
]
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.rand_distr]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.toml]
version = "0.8"
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]