-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 906 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
40
41
[package]
name = "uwu-rs"
description = "uwuifying library"
keywords = ["uwu", "owo"]
categories = ["algorithms", "text-processing", "command-line-utilities"]
repository = "https://github.com/SandroHc/uwu-rs"
documentation = "https://docs.rs/uwu-rs"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[features]
[dependencies]
aho-corasick = "1.1"
fastrand = { version = "2.0", default-features = false }
thiserror = { workspace = true }
tracing = { workspace = true }
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "1.0.0"
edition = "2021"
authors = ["Sandro Marques <sandro123iv@gmail.com>"]
license = "MIT"
[workspace.dependencies]
uwu-rs = { path = ".", version = "1.0.0" }
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
[profile.release]
lto = true
codegen-units = 1
opt-level = "s"
panic = "abort"