[package] name = "boxcap" # The name of your crate version = "0.1.0" # The version of your crate authors = ["Ryan Kunkel "] # Author information edition = "2021" # Rust edition (2018, 2021) # Optional fields description = "Common project structure for creating rust projects" # A short description repository = "https://github.com/yourusername/my_crate" # URL of the source repository documentation = "https://docs.rs/boxcap" # URL for the documentation homepage = "https://example.com" # URL for the homepage of your project license = "MIT" # License type (e.g., MIT, Apache-2.0) # Keywords help users find your crate keywords = ["projects", "crate", "rust", "services"] [dependencies] serde = { version = "1.0.208", features = ["derive"] } surrealdb = "1.5.4" chrono = "0.4.38" thiserror = "1.0.63" async-std = "1.12.0" tokio = "1.39.3" serde_json = "1.0.125"