-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 778 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 778 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
[package]
name = "stellar-tokens"
edition.workspace = true
license.workspace = true
repository.workspace = true
publish = true
version.workspace = true
description = "Fungible and NonFungible Tokens for the Stellar contracts."
[package.metadata.stellar]
cargo_inherit = true
[lib]
crate-type = ["lib", "cdylib"]
doctest = false
[dependencies]
soroban-sdk = { workspace = true }
stellar-contract-utils = { workspace = true }
stellar-governance = { workspace = true }
[dev-dependencies]
ed25519-dalek = { workspace = true }
soroban-sdk = { workspace = true, features = ["testutils"] }
soroban-test-helpers = { workspace = true }
stellar-event-assertion = { workspace = true }
k256 = { workspace = true, features = ["ecdsa"] }
p256 = { workspace = true, features = ["ecdsa"] }