Path: blob/main/Cargo.toml
483 views
unlisted
[workspace]1resolver = "2"2members = [3"shared",4"foundations/01-modular-arithmetic-groups/rust",5"foundations/02-rings-fields-polynomials/rust",6"foundations/03-galois-fields-aes/rust",7"foundations/04-number-theory-rsa/rust",8"foundations/05-discrete-log-diffie-hellman/rust",9"foundations/06-elliptic-curves/rust",10"frontier/07-pairings/rust",11"frontier/08-lattices-post-quantum/rust",12"frontier/09-commitments-sigma-protocols/rust",13"frontier/10-snarks-starks/rust",14"frontier/11-homomorphic-encryption/rust",15"frontier/12-mpc/rust",16]1718[workspace.dependencies]19num-bigint = "0.4"20num-traits = "0.2"21rand = "0.8"2223# Pedagogical stubs use todo!() extensively, which triggers warnings24# for unused variables, dead code, etc. Suppress these workspace-wide.25[workspace.lints.rust]26unused_variables = "allow"27dead_code = "allow"28unused_imports = "allow"29unused_mut = "allow"30unused_assignments = "allow"313233