-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 886 Bytes
/
Cargo.toml
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
[package]
name = "psrdada"
version = "0.4.0"
edition = "2021"
rust-version = "1.57.0"
authors = ["Kiran Shila <[email protected]>"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/kiranshila/psrdada-rs"
repository = "https://github.com/kiranshila/psrdada-rs"
description = "A rusty wrapper for the psrdada radio astronomy library"
readme = "README.md"
keywords = ["astronomy", "protocol", "telescope"]
categories = ["encoding", "parser-implementations"]
[dependencies]
psrdada-sys = { path = "./psrdada-sys", version = "0.4.0" }
page_size = "0.6"
tracing = "0.1"
nom = "7"
[dev-dependencies]
test-log = { version = "0.2", features = ["trace"] }
env_logger = "0.9"
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
] }
[workspace]
members = ["psrdada-sys"]