-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (52 loc) · 1.98 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
[workspace]
members = [
"chuckle",
"chuckle-gateway",
"chuckle-github",
"chuckle-http",
"chuckle-interactions",
"chuckle-jobs",
"chuckle-util"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/trufflehq/chuckle"
keywords = ["discord", "trufflehq", "truffle", "youtube", "twitch"]
authors = [
"Carter Himmel <[email protected]>"
]
homepage = "https://github.com/trufflehq/chuckle#readme"
[workspace.dependencies]
chuckle-gateway = { path = "./chuckle-gateway" }
chuckle-github = { path = "./chuckle-github" }
chuckle-http = { path = "./chuckle-http" }
chuckle-interactions = { path = "./chuckle-interactions", default-features = false }
chuckle-jobs = { path = "./chuckle-jobs" }
chuckle-util = { path = "./chuckle-util" }
anyhow = "1"
async-trait = "0.1"
axum = { version = "0.6", features = ["macros", "multipart"] }
chrono = "0.4"
hex = "0.4"
once_cell = "1"
redis = { version = "0.23", features = ["tokio-comp", "connection-manager"] }
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "uuid", "time" ] }
time = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter", "json"] }
twilight-cache-inmemory = { version = "0.15", features = ["permission-calculator"] }
twilight-gateway = { version = "0.15", default-features = false, features = ["rustls-webpki-roots"] }
twilight-http = { version = "0.15", default-features = false, features = ["rustls-webpki-roots"] }
twilight-model = "0.15"
twilight-util = { version = "0.15", features = ["builder"] }
uuid = { version = "1", features = ["serde", "v4"] }
vesper = { version = "0.11", features = ["bulk"] }
[profile.dev.package.sqlx-macros]
opt-level = 3