33 lines
778 B
TOML
33 lines
778 B
TOML
[package]
|
|
name = "versevdi-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0-only"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dependencies]
|
|
base64 = "=0.22.1"
|
|
getrandom = "=0.4.3"
|
|
quinn = { version = "=0.11.11", default-features = false, features = ["runtime-tokio", "rustls-ring"] }
|
|
rustls = { version = "=0.23.43", default-features = false, features = ["std", "ring"] }
|
|
rustls-pemfile = "=2.2.0"
|
|
serde = { version = "=1.0.229", features = ["derive"] }
|
|
serde_json = "=1.0.151"
|
|
tokio = { version = "=1.51.4", features = ["rt-multi-thread", "sync", "time", "net"] }
|
|
|
|
[[test]]
|
|
name = "protocol_fixtures"
|
|
path = "tests/protocol_fixtures.rs"
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
incremental = false
|