-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
80 lines (77 loc) · 2.19 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "integro-tabletop"
description = ""
repository = "https://github.com/temportalflux/integro-tabletop/"
license = "MIT OR Apache-2.0"
authors = ["Dustin Yost <dustin.yost.t@gmail.com>"]
version = "0.0.1"
edition = "2021"
[dependencies]
kdlize = { path = "crates/kdlize" }
netlify-oauth = { path = "crates/netlify-oauth" }
github = { path = "crates/github" }
database = { path = "crates/database" }
any-range = "0.1"
wasm-bindgen = "0.2"
log = { version = "0.4", features = ["std"] }
yew = { version = "0.21", features = ["csr"] }
yew-router = { version = "0.18" }
yewdux = "0.9"
gloo-events = "0.2"
gloo-storage = "0.3"
gloo-utils = "0.2"
gloo-timers = { version = "0.3", features = ["futures"] }
web-sys = { version = "0.3", features = [
"DataTransfer", "Document", "DomTokenList", "VisibilityState",
"HtmlCollection", "HtmlSelectElement", "HtmlInputElement", "HtmlTextAreaElement",
"Request", "Storage", "Window",
"Node", "NodeList",
"MediaQueryList", "MediaQueryListEvent",
"Event", "EventTarget", "KeyboardEvent",
"Performance", "Screen",
"UiEvent", "CssStyleDeclaration",
"IdbFactory", "IdbOpenDbRequest",
] }
wasm-bindgen-futures = "0.4"
futures = "0.3"
reqwest = { version = "0.11", features = ["json"] }
serde = "1.0"
serde_json = "1.0"
anyhow = "1.0"
thiserror = "1.0"
urlencoding = "2.1"
kdl = { version = "5.0.0-alpha.0", git = "https://github.com/kdl-org/kdl-rs" }
yew-hooks = "0.3"
url = "2.3"
fluvio-wasm-timer = "0.2"
enumset = "1.0"
multimap = "0.9"
enum-map = "2.6"
convert_case = "0.6"
dyn-clone = "1.0"
uuid = { version = "1.3", features = ["v4", "js"] }
num-traits = "0.2"
simplelog = "0.12"
time = "0.3"
downcast-rs = "1.2"
async-channel = "1.8"
derivative = "2.2"
itertools = "0.11"
phf = { version = "0.11", features = ["macros"] }
idb = "0.4"
serde-wasm-bindgen = "0.6"
js-sys = "0.3"
futures-util = "0.3"
lazy_static = "1.4"
unzip-n = "0.1"
rand = "0.8"
wasm-timer = "0.2"
regex = "1.8"
graphql_client = { version = "0.13", features = ["reqwest"] }
tokio = { version="1.26", features=["sync"] }
base64ct = { version="1.6", features=["alloc"] }
async-recursion = "1"
[target.'cfg(windows)'.dependencies]
tokio = { version="1.26", features=["full"] }
[dev-dependencies]
trim-margin = "0.1.0"