-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 1.02 KB
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
[package]
name = "polylayer"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
description = "Official Rust SDK for the Polylayer API — Bearer-keyed trading on Polymarket, Hyperliquid, and Jupiter Perpetuals."
license = "MIT"
homepage = "https://polylayer.xyz"
repository = "https://github.com/polylayer/polylayer-rs"
keywords = ["polylayer", "polymarket", "hyperliquid", "jupiter", "trading"]
categories = ["api-bindings", "asynchronous"]
readme = "README.md"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
thiserror = "1"
tokio = { version = "1", features = ["time"] }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
wiremock = "0.6"
[[example]]
name = "place_order"
path = "examples/place_order.rs"
[[example]]
name = "tpsl"
path = "examples/tpsl.rs"
[[example]]
name = "read_positions"
path = "examples/read_positions.rs"