-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
55 lines (49 loc) · 1.24 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
[workspace]
members = [
"twitcheventsub",
"twitcheventsub-godot",
"twitcheventsub-unity",
"twitcheventsub-structs",
]
default-members = ["twitcheventsub"]
resolver = "2"
[workspace.package]
edition = "2021"
description = "A library that handles everything with Twitch EventSub helix api for you."
repository = "https://github.com/lilith645/TwitchEventSub-rs.git"
authors = ["Owlkaline <[email protected]>"]
categories = [
"api-bindings",
"web-programming::websocket",
"authentication",
"network-programming",
]
keywords = ["Twitch", "EventSub", "oauth", "api", "Godot"]
license = "MIT"
exclude = ["examples"]
[workspace.dependencies]
tungstenite = "0.24.0"
enum_all_variants = "0.2.0"
curl = "0.4.46"
open = "5.1.4"
simple_env_load = "0.2.0"
log = "0.4"
attohttpc = "0.28.0"
serde = "1.0.210"
serde_json = "1.0.128"
serde_with = "3.8.3"
godot = "0.1.3"
image = "0.25.2"
rand = "0.8.5"
[workspace.dependencies.twitcheventsub]
version = "0.1"
path = "twitcheventsub"
[workspace.dependencies.twitcheventsub-godot]
version = "0.1"
path = "twitcheventsub-godot"
[workspace.dependencies.twitcheventsub-unity]
version = "0.1"
path = "twitcheventsub-unity"
[workspace.dependencies.twitcheventsub-structs]
version = "0.1"
path = "twitcheventsub-structs"