-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (26 loc) · 910 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
32
# Copyright © 2020-2021 Jeremy Carter <[email protected]>
#
# By using this software, you agree to the LICENSE TERMS
# outlined in the file titled LICENSE.md contained in the
# top-level directory of this project. If you don't agree
# to the LICENSE TERMS, you aren't allowed to use this
# software.
[package]
name = "signal-gen-cjds66"
version = "0.1.9"
authors = ["Jeremy Carter <[email protected]>"]
edition = "2018"
default-run = "signal-gen-cjds66"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"signal-gen-cjds66-lib",
]
[[bin]]
name = "signal-gen-cjds66"
path = "src/main.rs"
[dependencies]
# The main library for this project.
signal-gen-cjds66-lib = { path = "signal-gen-cjds66-lib", version = "0.1" }
# For parsing command line arguments and subcommands.
clap = { version = "2.33", features = ["yaml"] }