-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "proteinview"
version = "0.3.0"
edition = "2024"
description = "Terminal protein structure viewer"
license = "MIT"
authors = ["Tristan Farmer"]
repository = "https://github.com/tristanfarmer/proteinview"
homepage = "https://github.com/tristanfarmer/proteinview"
readme = "README.md"
keywords = ["protein", "pdb", "terminal", "tui", "bioinformatics"]
categories = ["command-line-utilities", "science", "visualization"]
rust-version = "1.85"
exclude = ["examples/*.pdb", "examples/*.cif", "debug.log", "DESIGN_RESEARCH.md"]
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
ratatui-image = { version = "9.0.0", default-features = false, features = ["crossterm"] }
image = "0.25"
pdbtbx = { version = "0.12", features = ["rstar"] }
clap = { version = "4", features = ["derive"] }
anyhow = "1"
base64 = "0.22"
reqwest = { version = "0.12", features = ["blocking"], optional = true }
tokio = { version = "1", features = ["rt", "macros"], optional = true }
[features]
default = []
fetch = ["dep:reqwest", "dep:tokio"]
[profile.release]
lto = true
strip = true
codegen-units = 1