rust/vec2d/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Sat, 16 May 2020 01:36:44 +0200
changeset 15564 732b82f44c83
parent 14207 bb2f301d4fe0
permissions -rw-r--r--
Hats webpage: Many improvements and fixes (2nd try) * Fix static hats not being animated properly * Make widges more user-friendly * Add local mode to hats webpage to make testing easier (IS_LOCAL variable) * Cleanup code * Update themes list * Update list of local hats
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13911
fa9f93393e9c Implement vec2d library to use for land arrays in the future
unc0rr
parents:
diff changeset
     1
[package]
fa9f93393e9c Implement vec2d library to use for land arrays in the future
unc0rr
parents:
diff changeset
     2
name = "vec2d"
fa9f93393e9c Implement vec2d library to use for land arrays in the future
unc0rr
parents:
diff changeset
     3
version = "0.1.0"
fa9f93393e9c Implement vec2d library to use for land arrays in the future
unc0rr
parents:
diff changeset
     4
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
14207
bb2f301d4fe0 2018ize everything
alfadur
parents: 14032
diff changeset
     5
edition = "2018"
13911
fa9f93393e9c Implement vec2d library to use for land arrays in the future
unc0rr
parents:
diff changeset
     6
fa9f93393e9c Implement vec2d library to use for land arrays in the future
unc0rr
parents:
diff changeset
     7
[dependencies]
14032
2869c2ccb1b8 extract size struct for common usage
alfadur
parents: 13911
diff changeset
     8
integral-geometry = { path = "../integral-geometry" }