Files
progcrypto_workshop/discord/Cargo.toml
2023-11-08 15:20:44 +01:00

43 lines
1.2 KiB
TOML

[package]
name = "progcrypto_workshop_discord"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tlsn-core = { git = "https://github.com/tlsnotary/tlsn", branch = "dev" }
tlsn-verifier = { git = "https://github.com/tlsnotary/tlsn", branch = "dev" }
p256 = { version = "0.13", features = ["ecdsa"] }
tokio = { version = "1.33.0", features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"io-std",
"fs",
] }
tokio-util = { version = "0.7.9", features = ["compat"] }
tracing-subscriber = "0.3.17"
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn", branch = "dev" }
hyper = { version = "0.14", features = ["client", "http1"] }
serde_json = "1.0.107"
futures = "0.3.28"
elliptic-curve = { version = "0.13.5", features = ["pkcs8"] }
chrono = "0.4.31"
serde = { version = "1.0.147", features = ["derive"] }
dotenv = "0.15.0"
rustls = { version = "0.21" }
tokio-rustls = { version = "0.24.1" }
tracing = "0.1.40"
rustls-pemfile = { version = "1.0.2" }
[[example]]
name = "discord_dm"
path = "src/examples/discord_dm.rs"
[[example]]
name = "discord_dm_verifier"
path = "src/examples/discord_dm_verifier.rs"