forked from oxidecomputer/omicron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (75 loc) · 1.92 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
72
73
74
75
76
77
78
79
80
81
[workspace]
members = [
"common",
"gateway",
"gateway-messages",
"nexus",
"nexus/src/db/db-macros",
"nexus/test-utils",
"nexus/test-utils-macros",
"nexus-client",
"package",
"rpaths",
"sled-agent",
"sled-agent-client",
"sp-sim",
"oximeter/oximeter",
"oximeter/collector",
"oximeter/db",
"oximeter/instruments",
"oximeter/producer",
"oximeter/oximeter-macro-impl",
"oximeter-client",
"test-utils",
]
default-members = [
"common",
"gateway",
"gateway-messages",
"nexus",
"nexus/src/db/db-macros",
"package",
"rpaths",
"sled-agent",
"sled-agent-client",
"sp-sim",
"oximeter/oximeter",
"oximeter/collector",
"oximeter/db",
"oximeter/instruments",
"oximeter/producer",
"oximeter/oximeter-macro-impl",
"oximeter-client",
"test-utils",
]
resolver = "2"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
#
# It's common during development to use a local copy of dropshot, propolis
# or steno in the parent directory. If you want to use those, uncomment
# one of these blocks.
#
#[patch."https://github.com/oxidecomputer/dropshot"]
#dropshot = { path = "../dropshot/dropshot" }
#[patch."https://github.com/oxidecomputer/steno"]
#steno = { path = "../steno" }
#[patch."https://github.com/oxidecomputer/propolis"]
#propolis-client = { path = "../propolis/client" }
#propolis-server = { path = "../propolis/server" }
#
# Local client generation during development.
#
#[patch."https://github.com/oxidecomputer/progenitor"]
#progenitor = { path = "../progenitor/progenitor" }
#[patch."https://github.com/oxidecomputer/typify"]
#typify = { path = "../typify/typify" }
#
# We maintain a fork of pq-sys to address upstream issues. See the
# README.oxide.md in the "oxide" branch of our fork for details.
#
[patch.crates-io.pq-sys]
git = 'https://github.com/oxidecomputer/pq-sys'
branch = "oxide/omicron"