[package] name = "rustygrad" version = "0.1.1" edition = "2021" description = "A tiny autograd engine inspired by micrograd" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] impl_ops = "0.1.1" rand = "0.8.5" [dependencies.uuid] version = "1.3.0" features = [ "v4", # Lets you generate random UUIDs # "fast-rng", # Use a faster (but still sufficiently random) RNG # "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs ] [dev-dependencies] petgraph = "0.6.3"