-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (52 loc) · 1.56 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "serenity-commands"
authors.workspace = true
description.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
serenity-commands-macros.workspace = true
serenity.workspace = true
thiserror = "1"
[dev-dependencies]
serenity = { workspace = true, default-features = true }
tokio = { version = "1", default-features = false, features = [
"macros",
"rt-multi-thread",
] }
[lints]
workspace = true
[workspace]
resolver = "2"
default-members = [".", "macros"]
members = [".", "macros"]
[workspace.package]
authors = ["Vidhan Bhatt <[email protected]>"]
description = "A library for creating/parsing Serenity slash commands."
edition = "2021"
homepage = "https://github.com/vidhanio/serenity-commands"
license = "MIT"
readme = "README.md"
repository = "https://github.com/vidhanio/serenity-commands"
version = "0.5.1"
[workspace.dependencies]
serenity-commands-macros = { version = "0.5", path = "macros" }
serenity = { version = "0.12", default-features = false, features = [
"builder",
] }
[workspace.lints]
[workspace.lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "forbid"
[workspace.lints.clippy]
nursery = "warn"
pedantic = "warn"