[package]
edition = "2021"
rust-version = "1.75"
name = "kshana"
version = "0.18.0"
authors = ["Chakshu Baweja <contact@ashforde.org>"]
build = false
exclude = [
"/web",
"/.github",
"/tests/fixtures",
"/tests/igs_real_data.rs",
"/tests/sgp4_crate_comparison.rs",
"/tests/terrain_nav_validation.rs",
"/xval",
"/mcp",
"/ide",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open, reproducible PNT-resilience simulator with quantum-sensor performance models"
homepage = "https://kshana.dev"
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 = "crossover_study"
path = "src/bin/crossover_study.rs"
[[bin]]
name = "kshana"
path = "src/main.rs"
[[bin]]
name = "validation_report"
path = "src/bin/validation_report.rs"
[[test]]
name = "agency_galileo"
path = "tests/agency_galileo.rs"
[[test]]
name = "agency_lro"
path = "tests/agency_lro.rs"
[[test]]
name = "agency_swarm"
path = "tests/agency_swarm.rs"
[[test]]
name = "allan_nist_sp1065_1000point"
path = "tests/allan_nist_sp1065_1000point.rs"
[[test]]
name = "allan_reference"
path = "tests/allan_reference.rs"
[[test]]
name = "araim_dual_real_data"
path = "tests/araim_dual_real_data.rs"
[[test]]
name = "calibration"
path = "tests/calibration.rs"
[[test]]
name = "cross_platform_golden"
path = "tests/cross_platform_golden.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "dominance_demonstrators"
path = "tests/dominance_demonstrators.rs"
[[test]]
name = "ephem_provider"
path = "tests/ephem_provider.rs"
[[test]]
name = "frame_reference_vectors"
path = "tests/frame_reference_vectors.rs"
[[test]]
name = "fusion_one_way_two_way"
path = "tests/fusion_one_way_two_way.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "imu_allan_spec"
path = "tests/imu_allan_spec.rs"
[[test]]
name = "mars_dynamics"
path = "tests/mars_dynamics.rs"
[[test]]
name = "mars_lmo_od"
path = "tests/mars_lmo_od.rs"
[[test]]
name = "mars_pnt_targets"
path = "tests/mars_pnt_targets.rs"
[[test]]
name = "mars_propagation"
path = "tests/mars_propagation.rs"
[[test]]
name = "navego_imu_crossval"
path = "tests/navego_imu_crossval.rs"
[[test]]
name = "no_overclaims"
path = "tests/no_overclaims.rs"
[[test]]
name = "precise_od_synth"
path = "tests/precise_od_synth.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "pvt_abmf"
path = "tests/pvt_abmf.rs"
[[test]]
name = "radiometric_benchmark"
path = "tests/radiometric_benchmark.rs"
[[test]]
name = "scenario_count_doc_sync"
path = "tests/scenario_count_doc_sync.rs"
[[test]]
name = "scenario_coverage"
path = "tests/scenario_coverage.rs"
[[test]]
name = "sgp4_verification"
path = "tests/sgp4_verification.rs"
[[test]]
name = "sp3_export_roundtrip"
path = "tests/sp3_export_roundtrip.rs"
[[test]]
name = "spoof_texbat_validation"
path = "tests/spoof_texbat_validation.rs"
[[test]]
name = "tides_iers"
path = "tests/tides_iers.rs"
[[test]]
name = "tutorials"
path = "tests/tutorials.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
[dev-dependencies.sgp4]
version = "2.4"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]