forked from Lilly-Protocol/lily-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 785 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 785 Bytes
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
[package]
name = "payments"
description = "Lily Protocol payment intents with asynchronous creation, settlement and cancellation on Soroban."
keywords.workspace = true
categories.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
rust-version.workspace = true
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
doctest = false
[dependencies]
soroban-sdk = { workspace = true }
lily-common = { workspace = true }
wallet = { path = "../wallet" }
[dev-dependencies]
soroban-sdk = { workspace = true, features = ["testutils"] }
lily-test-support = { workspace = true }
identity = { path = "../identity" }
wallet = { path = "../wallet" }
[lints]
workspace = true