-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 941 Bytes
/
Cargo.toml
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
[package]
name = "kidou"
version = "0.1.0"
authors = ["Pavel Sobolev <[email protected]>"]
edition = "2021"
rust-version = "1.56"
description = "Calculate the orbits of globular clusters in a model of the Galaxy potential"
documentation = "https://github.com/paveloom-university/Stellar-Astronomy-Laboratory-Workshop-S09-2021"
readme = "README.md"
homepage = "https://github.com/paveloom-university/Stellar-Astronomy-Laboratory-Workshop-S09-2021"
repository = "https://github.com/paveloom-university/Stellar-Astronomy-Laboratory-Workshop-S09-2021"
license-file = "LICENSE.md"
keywords = ["astronomy", "globular", "clusters", "orbits", "integration"]
categories = ["command-line-utilities"]
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
[dependencies]
byteorder = "=1.4.3"
clap = "=2.33.3"
csv = "=1.1.6"
rand = "=0.8.4"
rand_distr = "=0.4.2"
rand_xoshiro = "=0.6.0"
serde = {version = "=1.0.130", features = ["derive"]}