This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
67 lines (57 loc) · 1.51 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 = "stremio-core-web"
version = "0.47.7"
authors = ["Smart Code OOD"]
edition = "2021"
resolver = "2"
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
opt-level = 's'
[features]
default = []
# enable TRACE level of logging in the crate using `tracing`.
log-trace = []
[dependencies]
stremio-core = { git = "https://github.com/Stremio/stremio-core", features = ["derive", "analytics"], branch = "development" }
serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*"
futures = "0.3.*"
http = "0.2.*"
url = { version = "2.4.*", features = ["serde"] }
chrono = "0.4.*"
semver = { version = "1", features = ["serde"] }
regex = "1.8"
hex = "0.4.*"
either = "1.6.*"
lazy_static = "1.4.*"
enclose = "1.1.*"
itertools = "0.10.*"
boolinator = "2.4.*"
Inflector = "0.11.*"
wasm-bindgen = { version = "=0.2.78", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4"
gloo-utils = { version = "0.2", features = ["serde"] }
# panic hook for wasm
console_error_panic_hook = "0.1.*"
js-sys = "0.3"
web-sys = { version = "0.3", features = [
"WorkerGlobalScope",
"WorkerNavigator",
"Request",
"RequestInit",
"Response",
"console",
] }
getrandom = { version = "0.2.*", features = ["js"] }
cfg-if = "1.0"
serde_path_to_error = "0.1.*"
# Tracing
tracing = "0.1"
tracing-wasm = "0.2"
[dev-dependencies]
wasm-bindgen-test = "0.3.0"
# A way to quickly test with local version of `core` crates
# [patch.'https://github.com/Stremio/stremio-core']
# stremio-core = { path = "../core" }