jock-lang/Cargo.toml
2024-11-12 13:20:04 -05:00

32 lines
941 B
TOML

[package]
name = "jock-testing"
version = "0.1.0"
edition = "2021"
[dependencies]
crown = { git = "https://github.com/zorp-corp/nockapp", rev="57f9d9f0d5cbd8bf0b88cd8c8a108c1f551e33d8" }
sword = { git = "https://github.com/zorp-corp/sword.git", rev="29cc8d897c8cb7a70e5baf52c9b83f5ef04fe509" }
sword_macros = { git = "https://github.com/zorp-corp/sword.git", rev="29cc8d897c8cb7a70e5baf52c9b83f5ef04fe509" }
assert_no_alloc = { git = "https://github.com/zorp-corp/sword.git", rev="29cc8d897c8cb7a70e5baf52c9b83f5ef04fe509" }
clap = { version = "4.4.4", features = ["derive", "cargo", "color", "env"]}
tokio = { version = "1.32", features = ["rt", "rt-multi-thread", "net", "macros", "io-util", "fs", "sync", "time"] }
tracing = "0.1.40"
[[bin]]
name = "jock-testing"
path = "main.rs"
[profile.dev]
opt-level = 3
[profile.dev-fast]
inherits = "dev"
opt-level = 3
debug = 2
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1