Skip to content
Snippets Groups Projects
Cargo.toml 666 B
Newer Older
  • Learn to ignore specific revisions
  • Aaron Councilman's avatar
    Aaron Councilman committed
    [package]
    name = "juno_cava"
    version = "0.1.0"
    authors = ["Aaron Councilman <aaronjc4@illinois.edu>"]
    edition = "2021"
    
    [[bin]]
    name = "juno_cava"
    path = "src/main.rs"
    
    
    rarbore2's avatar
    rarbore2 committed
    [lib]
    path = "src/lib.rs"
    
    
    prathi3's avatar
    prathi3 committed
    [features]
    cuda = ["juno_build/cuda", "hercules_rt/cuda"]
    
    rarbore2's avatar
    rarbore2 committed
    seq = []
    
    prathi3's avatar
    prathi3 committed
    
    
    Aaron Councilman's avatar
    Aaron Councilman committed
    [build-dependencies]
    juno_build = { path = "../../juno_build" }
    
    [dependencies]
    juno_build = { path = "../../juno_build" }
    hercules_rt = { path = "../../hercules_rt" }
    async-std = "*"
    clap = { version = "*", features = ["derive"] }
    image = "*"
    with_builtin_macros = "0.1.0"
    
    rarbore2's avatar
    rarbore2 committed
    
    [dev-dependencies]
    criterion = { version = "0.5", features = ["html_reports"] }
    
    [[bench]]
    name = "cava_bench"
    
    rarbore2's avatar
    rarbore2 committed
    harness = false