forked from Stremio/stremio-core-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
66 lines (58 loc) · 1.48 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-swift"
version = "1.2.62"
authors = ["Smart Code OOD"]
edition = "2021"
resolver = "2"
[lib]
crate-type = ["staticlib"]
path = "src/commonMain/rust/lib.rs"
[profile.release]
lto = true
opt-level = 3
[dependencies]
stremio-core = { git = "https://github.com/Stremio/stremio-core", rev = "f74c212752443ef625a17d48ce4dc955f2300bc7", features = [
"derive",
"analytics",
"env-future-send",
] }
stremio-watched-bitfield = { git = "https://github.com/Stremio/stremio-core", rev = "f74c212752443ef625a17d48ce4dc955f2300bc7" }
serde = "1.0.*"
serde_json = "1.0.*"
futures = "0.3.*"
http = "0.2.*"
url = { version = "2.4", features = ["serde"] }
chrono = "0.4.*"
semver = { version = "1", features = ["serde"] }
hex = "0.4.*"
once_cell = "1"
enclose = "1.1.*"
boolinator = "2.4.*"
Inflector = "0.11.*"
getrandom = "0.2.*"
cfg-if = "0.1.*"
serde_path_to_error = "0.1.*"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync"] }
prost = "0.12"
prost-types = "0.12"
objc2-foundation = { version = "0.2.2", features = [
"NSString",
"NSData",
"NSUserDefaults",
"NSURLRequest",
"NSURLResponse",
"NSURLSession",
"NSURL",
"NSError",
"block2",
] }
objc2 = "0.5.2"
block2 = "0.5.1"
itertools = "0.13.0"
[build-dependencies]
prost-build = "0.12"
protox = "0.5"
glob = "0.3.0"
# A way to quickly test with local version of `core` crates
# [patch.'https://github.com/Stremio/stremio-core']
# stremio-core = { path = "../stremio-core" }