-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
31 lines (27 loc) · 934 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 = "otdrs"
version = "1.0.0"
authors = ["James Harrison <[email protected]>"]
edition = "2018"
description = "otdrs is a tool to convert OTDR Bellcore SOR files to Serdes-compatible structs and JSON/CBOR thereafter, usable as a Rust library or as a standalone tool; it can also write SORs from Rust data structures"
license = "GPL-3.0"
documentation = "https://github.com/JamesHarrison/otdrs"
homepage = "https://github.com/JamesHarrison/otdrs"
repository = "https://github.com/JamesHarrison/otdrs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = "7.1.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11.1"
clap = {version = "3.0.0-rc.7", features = ["derive"] }
crc = "3.0.0"
[lib]
name = "otdrs"
path = "src/lib.rs"
[[bin]]
name = "otdrs"
path = "src/otdrs.rs"
test = true
doc = true
bench = true