forked from readysettech/readyset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
80 lines (77 loc) · 2.62 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
[patch.crates-io]
tokio-postgres = { git = "https://github.com/readysettech/rust-postgres.git"}
eui48 = { git = "https://github.com/readysettech/eui48.git", branch = "master" }
opentelemetry = { git = "https://github.com/open-telemetry/opentelemetry-rust" }
opentelemetry-otlp = { git = "https://github.com/open-telemetry/opentelemetry-rust" }
opentelemetry-semantic-conventions = { git = "https://github.com/open-telemetry/opentelemetry-rust" }
[workspace]
members = [
"array2",
"benchmarks",
"catalog-tables",
"concrete-iter",
"data-generator",
"database-utils",
"dataflow-expression",
"dataflow-state",
"failpoint-macros",
"failpoint-macros/proc-macros",
"health-reporter",
"merging-interval-tree",
"mysql-srv",
"mysql-time",
"nom-sql",
"nom-sql-arbitrary",
"partial-map",
"psql-srv",
"query-generator",
"reader-map",
"readyset",
"readyset-adapter",
"readyset-alloc",
"readyset-client",
"readyset-client-metrics",
"readyset-client-test-helpers",
"readyset-clustertest",
"readyset-clustertest",
"readyset-common",
"readyset-data",
"readyset-dataflow",
"readyset-errors",
"readyset-logictest",
"readyset-mir",
"readyset-mysql",
"readyset-psql",
"readyset-repl",
"readyset-server",
"readyset-sql-passes",
"readyset-telemetry-reporter",
"readyset-tools",
"readyset-tracing",
"readyset-util",
"readyset-version",
"replication-offset",
"replicators",
"proptest-stateful",
"system-benchmarks",
"tinylb",
"test-utils",
"timestamp-service",
"tournament-kway"
]
resolver = "2"
[workspace.dependencies]
clap = "4.3"
consulrs = { git = "https://github.com/readysettech/consulrs.git", branch = "allow-disabling-rustls-tls-2" }
eui48 = { git = "https://github.com/readysettech/eui48.git", branch = "master", default-features = false }
mysql_async = { git = "https://github.com/readysettech/mysql_async" }
nperf-core = { git = "https://github.com/readysettech/not-perf.git" }
postgres = { git = "https://github.com/readysettech/rust-postgres.git"}
postgres-native-tls = { git = "https://github.com/readysettech/rust-postgres.git"}
postgres-protocol = { git = "https://github.com/readysettech/rust-postgres.git"}
postgres-types = { git = "https://github.com/readysettech/rust-postgres.git"}
tokio-postgres = { git = "https://github.com/readysettech/rust-postgres.git"}
tokio = { version = "1.32", features = ["full"] }
rocksdb = { git = "https://github.com/readysettech/rust-rocksdb.git", default-features = false, features = ["lz4", "jemalloc"] }
[profile.release]
debug=true