forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
71 lines (62 loc) · 2.41 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
67
68
69
70
71
[workspace]
resolver = "2"
members = [
"crates/mysten-common",
"crates/mysten-network",
"crates/telemetry-subscribers",
"crates/typed-store",
"crates/typed-store-derive",
"crates/shared-crypto",
"crates/sui-macros",
"crates/sui-proc-macros",
"narwhal/config",
"narwhal/consensus",
"narwhal/crypto",
"narwhal/dag",
"narwhal/executor",
"narwhal/network",
"narwhal/node",
"narwhal/primary",
"narwhal/storage",
"narwhal/test-utils",
"narwhal/types",
"narwhal/worker",
]
[workspace.package]
# This version string will be inherited by sui-core, sui-faucet, sui-node, sui-tools, sui-sdk, and sui crates.
version = "0.33.0"
[profile.release]
# debug = 1 means line charts only, which is minimum needed for good stack traces
debug = 1
# Write debug info into a separate file.
split-debuginfo = 'packed'
# Without stripping, sui binary size would be > 1GB.
strip = 'debuginfo'
# Exit process with SIGABRT when any thread panics
panic = 'abort'
# Same as release, but build binary with debug symbols (binary size will be ~ 1GB).
[profile.release-dbgsym]
inherits = "release"
split-debuginfo = 'off'
strip = 'none'
# Inherits from the release profile above.
[profile.bench]
# For convenience.
strip = 'none'
# Dependencies that should be kept in sync through the whole workspace
[workspace.dependencies]
axum = { version = "0.6.18", default-features = false, features = ["headers", "tokio", "http1", "http2", "json", "matched-path", "original-uri", "form", "query"] }
tokio = "1.27.0"
# metrics
metrics = "0.20"
snarkos-metrics = { git = "https://github.com/eqlabs/snarkOS", branch = "enter_bullshark", package = "snarkos-node-metrics" }
# anemo dependencies
anemo = { git = "https://github.com/mystenlabs/anemo.git", rev = "40e3bf357313fe5caa924673711af8be4dc4096e" }
anemo-build = { git = "https://github.com/mystenlabs/anemo.git", rev = "40e3bf357313fe5caa924673711af8be4dc4096e" }
anemo-cli = { git = "https://github.com/mystenlabs/anemo.git", rev = "40e3bf357313fe5caa924673711af8be4dc4096e"}
anemo-tower = { git = "https://github.com/mystenlabs/anemo.git", rev = "40e3bf357313fe5caa924673711af8be4dc4096e"}
mysten-network = { path = "crates/mysten-network" }
mysten-common = { path = "crates/mysten-common" }
telemetry-subscribers = { path = "crates/telemetry-subscribers" }
typed-store = { path = "crates/typed-store" }
typed-store-derive = { path = "crates/typed-store-derive" }