Skip to content

Commit d27aa9a

Browse files
committed
Add package dependencies
1 parent b751019 commit d27aa9a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Project.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,17 @@ uuid = "0bbb1fad-0f24-45fe-94a4-415852c5cc3b"
33
version = "0.1.0"
44

55
[deps]
6+
ArraysOfArrays = "65a8f2f4-9b39-5baf-92e2-a9cc46fdf018"
7+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
10+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
11+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
612

713
[compat]
14+
ArraysOfArrays = "0.4"
15+
Distributions = "0.21.3"
16+
StatsBase = "0.32"
817
julia = "1"
918

1019
[extras]

src/EmpiricalDistributions.jl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ __precompile__(true)
44

55
module EmpiricalDistributions
66

7-
# package code goes here
7+
using LinearAlgebra
8+
using Random
9+
using Statistics
10+
11+
using ArraysOfArrays
12+
using Distributions
13+
using StatsBase
14+
815

916
end # module

0 commit comments

Comments
 (0)