15 lines
527 B
TOML
15 lines
527 B
TOML
[package]
|
|
name = "mvn_accomp_csv"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Danila Gamkov <danila_gamkov@cosmos.ru>"]
|
|
description = "Raw accompanying MVN data parser. The parser reads T1MBH, T2MBH, T3MBH, T4MBH sensors data from files like MVN_010125_A-000.txt (see <sd> directory in science MVN data) and saves this data in csv-format files"
|
|
|
|
[dependencies]
|
|
chrono = "0.4"
|
|
clap = { version = "4.*", features = ["derive"] }
|
|
lazy_static = {version = "1.5.0", features = ["spin_no_std"]}
|
|
regex = "1.7.0"
|
|
walkdir = "2.3.2"
|
|
|