2024-10-22 01:30:13 +02:00
|
|
|
[package]
|
|
|
|
|
name = "objcache_examples"
|
2024-10-22 23:29:26 +02:00
|
|
|
version = "0.2.0"
|
2024-10-22 01:30:13 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
rust-version = "1.81"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "objcache"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
tokio = { version = "1.*", default-features = false, features = ["rt-multi-thread", "macros"] }
|
|
|
|
|
tracing = { version = "0.1.40", default-features = false }
|
|
|
|
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "ansi"] }
|
2024-10-22 23:29:26 +02:00
|
|
|
serde = { version = "1.0.213", default-features = false, features = ["std", "derive"] }
|
2024-10-22 01:30:13 +02:00
|
|
|
objcache = { path = "../" }
|