tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Cargo.toml (464B)


      1 [package]
      2 name = "libcrux-traits"
      3 description = "Traits for cryptographic algorithms"
      4 version = "0.0.3"
      5 license = "Apache-2.0"
      6 edition = "2021"
      7 
      8 [features]
      9 # core::error::Error is still pretty recent, so we only implement it for our errors behind a feature
     10 error-in-core = []
     11 # expose tests that are generic over the traits
     12 generic-tests = []
     13 # whether or not the alloc crate is used
     14 alloc = []
     15 
     16 [dependencies]
     17 rand = { version = "0.8", default-features = false }