-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
61 lines (56 loc) · 1.6 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
[workspace]
resolver = "2"
members = [
"crates/codegen",
"crates/platform",
"crates/util",
"crates/w3gs",
"crates/w3map",
"crates/w3c",
"crates/blp",
"crates/lan",
"crates/log",
"crates/log-subscriber",
"crates/config",
"crates/net",
"crates/w3storage",
"crates/w3replay",
"crates/constants",
"crates/event",
"crates/task",
"crates/types",
"crates/debug",
"crates/observer",
"crates/observer-fs",
"crates/observer-archiver",
"crates/kinesis",
"crates/replay",
"crates/controller",
"crates/node",
"crates/client",
"crates/observer-edge",
"binaries/flo",
"binaries/flo-cli",
"binaries/flo-controller-service",
"binaries/flo-node-service",
"binaries/flo-worker",
"binaries/flo-worker-ui",
"binaries/flo-ping",
"binaries/flo-stats-service",
"deps/flo-grpc"
]
[patch.crates-io]
#stormlib = { path = "../stormlib-rs/crates/stormlib" }
#stormlib-sys = { path = "../stormlib-rs/crates/stormlib-sys" }
stormlib = { git = "https://github.com/wc3tools/stormlib-rs.git" }
stormlib-sys = { git = "https://github.com/wc3tools/stormlib-rs.git" }
casclib = { git = "https://github.com/wc3tools/casclib-rs.git" }
casclib-sys = { git = "https://github.com/wc3tools/casclib-rs.git" }
#s2-grpc-utils = { path = "../s2-grpc-utils" }
s2-grpc-utils = { git = "https://github.com/Ventmere/s2-grpc-utils.git", branch = "0.2" }
#flo-state = { path = "../flo-state" }
bs-diesel-utils = { git = "https://github.com/BSpaceinc/bs-diesel-utils.git" }
async-dnssd = { git = "https://github.com/stbuehler/rust-async-dnssd.git" }
[profile.release-with-debug]
inherits = "release"
debug = true