f6bd511599
* merging georgio/lp-psqv2-integration * use authenicator on the responder's side * nym-lp crate compiling * moved the e2e test to nym-lp * move key generation to peer * moved principal generation * update KKTResponder * encapsulation key parsing * Adding concrete types within KKT exchange * initiator side of the full handshake * responder side of the handshake and full e2e test * fixed unit-tests within nym-kkt * LpSession cleanup * helpers for Transport * revamp of the transport traits and initial work on client-side transport * compiling nym-crypto * 'working' client-entry dvpn reg * Fix key conversion * Slightly reduce use of rand08 * reverted back to libcrux repo refs * intial telescoping reg * removing dead code * wip * moved data encryption into the state machine * restoring nym-lp tests * update lp api model * Add receiver index derivation * Add receiver index derivation * use derived receiver index * feat: add kem key generation to nodes * generate fresh x25519, mlkem768 and mceliece keys on config migration * add lp peer config * nym-node startup cleanup * removed dependency on pre-rand09 from nym-lp * re-expose LP information on the http API * fixed tests compilation * add peer config happy path tests * formatting * add more tests and fix bug * better docs * clippy and formatting issues * return error on mceliece within NestedSession * wasm fixes * removed legacy nym-vpn-lib-wasm * fixing wasm for real this time * additional fixes * add payload to kkt * make clippy happy * moved LP to nym-node crate * cargo fmt * integrate lpconfig payload * fix response size trait impl * Migrate receiver index * Change receiver index to u32 and regorganize crates * clippy * hopefully final wasm fixes * simple conversion method from semver to ciphersuite * updated nym-node config template * chore: remove duplicated code --------- Co-authored-by: Georgio Nicolas <me@georgio.xyz>
61 lines
2.2 KiB
TOML
61 lines
2.2 KiB
TOML
[package]
|
|
name = "nym-api-requests"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
description = "Nym API request types and functions"
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bs58 = { workspace = true }
|
|
celes = { workspace = true } # country codes
|
|
cosmrs = { workspace = true }
|
|
cosmwasm-std = { workspace = true }
|
|
schemars = { workspace = true, features = ["preserve_order"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
strum = { workspace = true, features = ["derive"] }
|
|
strum_macros = { workspace = true }
|
|
humantime-serde = { workspace = true }
|
|
hex = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha2.workspace = true
|
|
tendermint = { workspace = true }
|
|
tendermint-rpc = { workspace = true }
|
|
thiserror.workspace = true
|
|
time = { workspace = true, features = ["serde", "parsing", "formatting"] }
|
|
ts-rs = { workspace = true, optional = true }
|
|
utoipa.workspace = true
|
|
tracing = { workspace = true }
|
|
|
|
# for serde on secp256k1 signatures
|
|
ecdsa = { workspace = true, features = ["serde"] }
|
|
|
|
nym-serde-helpers = { workspace = true, features = ["bs58", "base64", "date"] }
|
|
nym-credentials-interface = { workspace = true }
|
|
nym-crypto = { workspace = true, features = ["serde", "asymmetric"] }
|
|
|
|
nym-config = { workspace = true }
|
|
nym-ecash-time = { workspace = true }
|
|
nym-compact-ecash = { workspace = true }
|
|
nym-contracts-common = { workspace = true, features = ["naive_float"] }
|
|
nym-mixnet-contract-common = { workspace = true, features = ["utoipa"] }
|
|
nym-coconut-dkg-common = { workspace = true }
|
|
nym-node-requests = { workspace = true, default-features = false, features = ["openapi"] }
|
|
nym-noise-keys = { workspace = true }
|
|
nym-network-defaults = { workspace = true }
|
|
nym-ticketbooks-merkle = { workspace = true }
|
|
nym-ecash-signer-check-types = { workspace = true }
|
|
nym-kkt-ciphersuite = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
nym-crypto = { workspace = true, features = ["rand"] }
|
|
nym-test-utils = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
generate-ts = ["ts-rs", "nym-mixnet-contract-common/generate-ts"]
|