-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.28 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
[workspace]
resolver = "2"
members = [
"crates/fixedpointmath",
"crates/hyperdrive-wrappers",
"crates/test-utils",
"crates/hyperdrive-test-utils",
"crates/hyperdrive-math",
"bindings/hyperdrivepy",
]
[workspace.package]
name = "hyperdrive-rs"
version = "0.18.1"
authors = [
"Alex Towle <[email protected]>",
"Dylan Paiton <[email protected]>",
"Jonny Rhea <[email protected]>",
"Matthew Brown <[email protected]>",
"Mihai Cosma <[email protected]>",
"Ryan Goree <[email protected]>",
"Sheng Lundquist <[email protected]>",
]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://hyperdrive.box/"
documentation = "https://docs.hyperdrive.box"
repository = "https://github.com/delvtech/hyperdrive-rs"
description = "API for simulating Hyperdrive smart contract transactions."
[workspace.dependencies]
fixedpointmath = { version = "0.18.1", path="crates/fixedpointmath" }
hyperdrive-wrappers = { version = "0.18.1", path="crates/hyperdrive-wrappers" }
hyperdrive-math = { version = "0.18.1", path="crates/hyperdrive-math" }
[workspace.lints.clippy]
comparison_chain = "allow"
[workspace.profile.release]
opt-level = 3
strip = true
debug = false
codegen-units = 1
lto = true
[workspace.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "assets/katex_header.html"]