-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (31 loc) · 878 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
33
34
35
36
37
38
39
[package]
name = "ripmors"
version = "0.1.0"
authors = ["Quentin Santos <[email protected]>"]
description = "ripmors is a library for encoding and decoding international Morse code and several variants"
repository = "https://github.com/qsantos/ripmors/"
license = "Apache-2.0 AND MIT"
edition = "2021"
rust-version = "1.74.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
rand = "0.8.5"
tango-bench = "0.6.0"
[[bench]]
name = "criterion"
harness = false
[[bench]]
name = "tango"
harness = false
[profile.profiling]
inherits = "release"
debug = true
[dependencies]
clap = { version = "4.5.4", features = ["derive"], optional = true }
simdutf8 = "0.1.4"
[features]
default = ["clap"]
[[bin]]
name = "ripmors"
required-features = ["clap"]