-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 860 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "upmu-dataframes"
version = "0.1.0"
edition = "2024"
authors = ["AZX, PBC"]
description = "IEEE C37.118 synchrophasor data frame parser and utilities"
license = "BSD-3-Clause"
repository = "https://github.com/AZX-PBC-OSS/upmu-dataframes"
readme = "README.md"
keywords = ["synchrophasor", "c37118", "pmu", "ieee", "power-systems"]
categories = ["command-line-utilities", "encoding", "science"]
[dependencies]
clap = { version = "4", features = ["derive"] }
csv = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
byteorder = "1"
crc = "3"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
thiserror = "2"
anyhow = "1"
rand = "0.9"
ureq = "3"
indicatif = "0.17"
flate2 = "1"
rand_distr = "0.5"
walkdir = "2"
[dev-dependencies]
tempfile = "3"
[profile.release]
lto = true
codegen-units = 1