forked from stellar/rs-soroban-poseidon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
46 lines (39 loc) · 1.17 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
37
38
39
40
41
42
43
44
45
46
[workspace]
resolver = "2"
members = [
".",
"tests/poseidon_contract",
"tests/poseidon2_contract",
]
[workspace.package]
version = "25.0.0"
authors = ["Stellar Development Foundation <info@stellar.org>"]
edition = "2021"
rust-version = "1.84.0"
license = "Apache-2.0"
[workspace.dependencies]
soroban-sdk = "25.3.0"
soroban-poseidon = { path = "." }
[package]
name = "soroban-poseidon"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Poseidon and Poseidon2 cryptographic hash functions for Soroban smart contracts"
homepage = "https://github.com/stellar/rs-soroban-poseidon"
repository = "https://github.com/stellar/rs-soroban-poseidon"
documentation = "https://docs.rs/soroban-poseidon"
readme = "README.md"
keywords = ["soroban", "stellar", "cryptography", "poseidon", "poseidon2"]
categories = ["cryptography", "no-std"]
[lib]
doctest = true
[dependencies]
soroban-sdk = { workspace = true, features = ["hazmat-crypto"] }
[dev-dependencies]
soroban-sdk = { workspace = true, features = ["hazmat-crypto", "testutils"] }
[features]
default = []
testutils = ["soroban-sdk/testutils"]