-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
61 lines (56 loc) · 1.64 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
[package]
name = "icie"
version = "1.0.2"
authors = ["Mateusz Cegiełka <[email protected]>"]
edition = "2018"
description = "Competitive programming IDE-as-a-VS-Code-plugin"
repository = "https://github.com/pustaczek/icie"
license = "MPL-2.0"
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["wasmbind"] }
debris = { git = "https://github.com/pustaczek/debris" }
evscode = { path = "./evscode" }
futures = { version = "0.3", default-features = false, features = ["async-await", "std"] }
js-sys = "0.3"
keytar-sys = { path = "./keytar-sys" }
log = "0.4"
node-sys = { path = "node-sys" }
once_cell = "1.3"
regex = { version = "1.1", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
unijudge = { path = "./unijudge" }
unijudge-atcoder = { path = "./unijudge-atcoder" }
unijudge-codechef = { path = "./unijudge-codechef" }
unijudge-codeforces = { path = "./unijudge-codeforces" }
unijudge-sio2 = { path = "./unijudge-sio2" }
unijudge-spoj = { path = "./unijudge-spoj" }
vscode-sys = { path = "./vscode-sys" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
[patch.crates-io]
cookie = { git = "https://github.com/SergioBenitez/cookie-rs", rev = "50ef66357921673d8292aeecd344d2645ba65fe4" }
time = { git = "https://github.com/pustaczek/time", branch = "icie" }
[workspace]
members = [
".",
"evscode",
"evscode-codegen",
"keytar-sys",
"node-sys",
"unijudge",
"unijudge-atcoder",
"unijudge-codechef",
"unijudge-codeforces",
"unijudge-sio2",
"unijudge-spoj",
"vscode-sys",
]