-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
54 lines (45 loc) · 1.4 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
[workspace]
resolver = "2"
members = ["stremio-core-kotlin", "stremio-core-protobuf"]
[workspace.dependencies]
stremio-core = { version = "0.1", git = "https://github.com/Stremio/stremio-core", branch = "development", features = [
"derive",
"analytics",
"env-future-send",
] }
# For share UI models
stremio-core-web = { version = "0.47", git = "https://github.com/Stremio/stremio-core", branch = "development", default-features = false }
stremio-core-protobuf = { version = "0.1", path = "stremio-core-protobuf", default-features = false }
# Protobuf
prost = "0.13"
prost-types = "0.13"
# Protobuf for codegen, e.g. build.rs
# Enable the `cleanup-markdown` feature to clean any non-rust markdown examples
prost-build = { version = "0.13", features = ["cleanup-markdown"] }
protox = "0.7"
glob = "0.3.0"
# Http Request handling
http = { version = "0.2.*" }
reqwest = { version = "0.11" }
openssl = { version = "=0.10.57" }
# https://github.com/sfackler/rust-openssl/issues/2163
openssl-sys = { version = "=0.9.92" }
http-cache-reqwest = { version = "0.4.5" }
reqwest-middleware = { version = "0.1.6" }
# Serialization
serde = "1.0.*"
serde_json = "1.0.*"
serde_path_to_error = "0.1.*"
# Utils
once_cell = "1"
itertools = "0.13"
getrandom = "0.2"
chrono = "0.4"
hex = "0.4"
# Futures
futures = "0.3"
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
[profile.release]
lto = true
opt-level = 3